function populateSWF(file,w,h){
	var shtml = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'";
	shtml += " codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,45,0'";
	shtml += "  width='"+w+"' height='"+h+"' id='logo_header' align='left'>";
//										modifica nome file.swf
	shtml += " <param name=movie value='images/"+file+"'>";
	shtml += " <param name=quality value='high'>";
	shtml += " <param name='wmode' value='transparent'>";
//						modifica nome file.swf
	shtml += " <embed src='images/"+file+"' quality='high' wmode='transparent'  width='"+w+"' height='"+h+"' name='logo_header0' align='left'";
	shtml += "  type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed>";
	shtml += "     </object>"

	var md = document;
	var d = md.getElementById("logo_header");
	d.innerHTML = shtml;
}
function populateSWF2(file,w,h){
	var shtml = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'";
	shtml += " codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,45,0'";
	shtml += "  width='"+w+"' height='"+h+"' id='immagine_duomo' align='left'>";
//										modifica nome file.swf
	shtml += " <param name=movie value='images/"+file+"'>";
	shtml += " <param name=quality value='high'>";
	shtml += " <param name='wmode' value='transparent'>";
//						modifica nome file.swf
	shtml += " <embed src='images/"+file+"' quality='high' wmode='transparent'  width='"+w+"' height='"+h+"' name='immagine_duomo0' align='left'";
	shtml += "  type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed>";
	shtml += "     </object>"

	var md = document;
	var d = md.getElementById("immagine_duomo");
	d.innerHTML = shtml;
}
