// JavaScript Document
function createplayer(theFile, go) {
	var s = new SWFObject("tv/flvplayer.swf","thePlayerId","540","425","7");
		s.addParam("allowfullscreen","true");
		s.addParam("wmode","transparent");
		s.addVariable("file",theFile);
		s.addVariable("overstretch","true");
		s.addVariable("displaywidth","540");
		s.addVariable("displayheight","405");
		s.addVariable('autostart','false');
		s.addVariable('repeat','list');
		s.addVariable("shuffle","false");
		s.addVariable('largecontrols','false');
		s.addVariable("thumbsinplaylist","true");
		s.addVariable("backcolor","0x000000");
		s.addVariable("frontcolor","0xFFFFFF");
		s.addVariable("lightcolor","0x0099FF");
		if (go) { s.addVariable("autostart","true"); }
		s.write("telle");
}
