
/** JavaScript Document **/

// Bug Fix IE --> Embed the Flash Files in the HTML
// We use a js file to embed the flash objet into the HTML file so as to curb the IE AxtiveX "bug" that
// forces users to  have to click on the flash player to actiavte it

// the javascript vars pathToWorkingDir and lang are set in includes/html.header.php by PHP

			document.write ('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="599" height="230" id="menu_07" align="middle">');
			document.write ('<param name="allowScriptAccess" value="always" />');
			document.write ('<param name="movie" value="' + pathToWorkingDir + 'flash/menu_08.swf?lang=' + lang + '&pathToWorkingDir=' + pathToWorkingDir +'&bannerType='+bannerType+'&bannerTtl='+bannerTtl+'&bannerHdr='+bannerHdr+'&bannerSwf='+bannerSwf+'" /><param name="quality" value="high" />');
			document.write ('<embed src="' + pathToWorkingDir + 'flash/menu_08.swf?lang=' + lang + '&pathToWorkingDir=' + pathToWorkingDir +'&bannerType='+bannerType+'&bannerTtl='+bannerTtl+'&bannerHdr='+bannerHdr+'&bannerSwf='+bannerSwf+'" quality="high"  width="599" height="230" name="menu_09" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
			document.write ('</object>');