function populateSWF(filmato,w,h){
	var shtml = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"";
	shtml += " codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\"";
	shtml += "  width=\""+w+"\" height=\""+h+"\" id=\"home\" align=\"\">";
	shtml += " <param name=movie value=\""+filmato+"\">";
	shtml += " <param name=quality value=high>";
	shtml += " <param name=wmode value=transparent>";
	shtml += " <param name=menu value=false>";
	shtml += " <embed src=\""+filmato+"\" quality=high wmode=transparent width=\""+w+"\" height=\""+h+"\" name=\"home\" align=\"\"";
	shtml += "  type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>";
	shtml += "     </object>"

	var md = document;
	var d = md.getElementById("swfcont");
	d.innerHTML = shtml;
}
