
// IE now requires Flash objects to be defined in external files like this format:
// 		document.write('...');
// So now instead of just including an swf in the html directly, you must 
// call FlashActiveXFix with the same html used for the object insertion. 
//
// Ex:
// if the original HTML to include the Flash obj was:
//
//<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"  id="productdisplay" width="640" height="454" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=6,0,0,0">
//<param name="movie" value="ionicbreezegp.swf">
//<param name="quality" value="high">
//<param name="bgcolor" value="#FFFFFF">
//<param name="menu" value="false">
//<embed src=ionicbreezegp.swf type="application/x-shockwave-flash"  bgcolor=#FFFFFF width=640 height=454 name="productdisplay" play="TRUE" menu="false" swLiveConnect="TRUE" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>
//</object>
//
// It now has to be:
// FlashActiveXFix('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"  id="productdisplay" width="640" height="454" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=6,0,0,0"> <param name="movie" value="ionicbreezegp.swf"> <param name="quality" value="high">	<param name="bgcolor" value="#FFFFFF">	<param name="menu" value="false">	<embed src=ionicbreezegp.swf type="application/x-shockwave-flash"  bgcolor=#FFFFFF width=640 height=454 name="productdisplay" play="TRUE" menu="false" swLiveConnect="TRUE" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>	</object>');
//
// Note that its all on one line only because javascript will give "unterminated string constant errors" otherwise

function FlashActiveXFix(flashDef)
{
	document.write(flashDef);
}
