function showVideoPlayerWmv(lWidth, lHeight, sVideoFileName, sImageBg, sAutoStart) {
	var sFoo = "";
	sFoo = "<embed alt=\"Filmato\" src=\"" + sVideoFileName + "\" \n";
	sFoo = sFoo + "width=\""+ lWidth + "\" \n";
	sFoo = sFoo + "height=\"" + lHeight + "\" \n";
	sFoo = sFoo + "style=\"background-image: url(" + sImageBg + ");\" \n";
	sFoo = sFoo + "TransparentatStart=\"-1\" \n";
	sFoo = sFoo + "autostart=\"" + sAutoStart + "\" \n";
	sFoo = sFoo + " align=\"middle\" \n";
	sFoo = sFoo + "/> \n";
	RunFoo(sFoo);
}



