
/** 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://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="161" height="230">');
			 document.write ('<param name="movie" value="'+ pathToWorkingDir + 'flash/scrollingPicBar-v5.swf?lang=' + lang + '&pathToWorkingDir=' + pathToWorkingDir + '&introText=' + illoIntroText + '" />');
			 document.write ('<param name="allowScriptAccess" value="always" />');
			 document.write ('<param name="quality" value="high" />');
			 document.write ('<embed src="' + pathToWorkingDir + 'flash/scrollingPicBar-v5.swf?lang=' + lang + '&pathToWorkingDir=' + pathToWorkingDir + '&introText=' + illoIntroText + '"  quality="high" allowScriptAccess="always" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="161" height="230"></embed>');
			 document.write (' </object>');
