function populateSWF(){
	var md = document;
	var d;
	var shtml="";
	//alert(md.getElementById("swfmenu_dovesiamo"));
	if(md.getElementById("swfmenu_profilo")!=null){
		shtml="";
		d = md.getElementById("swfmenu_profilo");
		shtml = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"";
		shtml += " codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0\"";
		shtml += "  width=\"779\" height=\"760\" id=\"menu\" align=\"\">";
		shtml += " <param name=movie value=\"index.swf\">";
		
		shtml += " <param name=quality value=best>";
		//shtml += " <param name=bgcolor value=#FFFFFF>";
		shtml += " <embed src=\"index.swf\" quality=high bgcolor=#FFFFFF  width=\"779\" height=\"760\" name=\"menu\" align=\"\"";
		shtml += "  type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" ></embed>";
		shtml += "     </object>"

	}
	

	var md = document;
	var d = md.getElementById("swfmenu_profilo");
	d.innerHTML = shtml;
}

window.onload = populateSWF;

