
function showSinglePlayer(theFile, go) {
	var s = new SWFObject("video/mediaplayer2.swf","thePlayerId","720","405","7");
	s.addParam("allowfullscreen","true");
	s.addVariable("file",theFile);
	s.addVariable("width","720");
	s.addVariable("height","405");
	s.addVariable('lightcolor','0x00ccff');
	//s.addVariable("displayheight","225");//
	s.addVariable("overstretch","fit");
	s.addVariable('logo','images/rLogo.png');
	if (go) { s.addVariable("autostart","true"); }
	s.write("singlePlayer");
}
