function RunFoo(sDocument) {
    document.write(sDocument);
}

function showVideoPlayer(lWidth, lHeight, sVideoFileName, sImageBg, sAutoStart) {
	var sFoo = "";
	sFoo = "<embed alt=\"Filmato\" src=\"public/mediaplayer.swf\" \n";
	sFoo = sFoo + "width=\""+ lWidth + "\" \n";
	sFoo = sFoo + "height=\"" + lHeight + "\" \n";
	sFoo = sFoo + "allowscriptaccess=\"always\" \n";
	sFoo = sFoo + "allowfullscreen=\"true\" \n";
	sFoo = sFoo + "flashvars=\"height="+ lHeight + "&width=" + lWidth + "&file=" + sVideoFileName + "&image=" + sImageBg + "&showstop=true&overstretch=fit&autostart=" + sAutoStart + "&backcolor=0xC9C9C9&frontcolor=0X222222\" \n";
	sFoo = sFoo + "/> \n";
	RunFoo(sFoo);
}
