// Filename: flashinsert.js
// Description: This script writes xhtml that will embed a basic flash file.  With the release of IE7, users must click to activate ActiveX 
//  controls that are coded in xhtml.  Since this is an external script, the user won't need to click the flash file in order to
//  activate it's interface.


if (hasRightVersion)
{
		document.write("<div style=\"left:201;top:150;position:absolute;\">");
		document.write("<OBJECT tabindex=\"-1\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"551\" height=\"138\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\"><PARAM name=\"movie\" value=\"http://www.microsoft.com/Windows/ie/enthusiast/awe/AWE_subhero_IE.swf\"><PARAM name=\"menu\" value=\"false\"><PARAM name=\"quality\" value=\"high\"><EMBED src=\"http://www.microsoft.com/Windows/ie/enthusiast/awe/AWE_subhero_IE.swf\" quality=\"high\" menu=\"false\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"551\" height=\"138\"></EMBED></OBJECT><br><br>");
		document.write("</div>");
}


