// JavaScript Document
function createplayer(theFile, go) {
	var s = new SWFObject("../tv/flvplayer.swf","thePlayerId","540","310","7");
	s.addParam("allowfullscreen","true");
		s.addParam("wmode","transparent");
	s.addVariable("file",theFile);
	s.addVariable("overstretch","true");
	s.addVariable("displaywidth","350");
	s.addVariable("displayheight","290");
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");
}