function loadFlash(file, height, width) {
	// Cerco di superare i problemi tecnici con i flash in IE!!!
	
	document.write("<OBJECT CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' WIDTH='"+width+"' HEIGHT='"+height+"' ");
	document.write("CODEBASE='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0'> ");
	document.write("<PARAM NAME='MOVIE'  VALUE='"+file+".swf'> ");
	document.write("<PARAM NAME='QUALITY' VALUE='high'> ");
	document.write("<param name='menu' value='false' /> ");
	document.write("<EMBED SRC='"+file+".swf' ");
	document.write("WIDTH='"+width+"' HEIGHT='"+height+"' QUALITY='high' menu='false' "); 
	document.write("PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'> ");
	document.write("</EMBED> </OBJECT> ");
}
