// ADAMS IE FLASH BUG FIXER // 

// TO USE JUST INSERT //
// <script language="javascript" src="path to the js file/ie_fix.js"></script> IN THE HEAD of the file  //
// THEN PUT //
// <script language="javascript">flashIe('flashfile.swf','the files width','the files height','an extra param if need be - it's optional though');</script>  //
// in the place the flash files has to be  //

function flashIe(who, width, height, other)
{	
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + width + '" height="' + height + '" />\n');
document.write('<param name="movie" value="' + who + '" ' + ' />\n');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="WMODE" value="transparent">\n');
document.write('<embed src="' + who + '"' + 'width="' + width + '" height="' + height + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" </embed>\n');
document.write('</object />\n');
}
		
                    
			      