<!--
// site links:
var home = "/home";
var about = "/about";
var custom = "/custom";
var simulations = "/simulations";
var programs = "/programs";
//////////////////////////////////////////////
/////////////////////
// Do not edit 
var sQuery = 'url=' + escape(location.href) + '&home=' + escape(home) + '&about=' + escape(about) + '&custom=' + escape(custom) + '&simulations=' + escape(simulations) + '&programs=' + escape(programs);
//alert("Query is " + sQuery);


		var embedText = "";
		embedText +=
			'<OBJECT ' +
				'CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ' +
				'CODEBASE="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ' +
				'WIDTH="755" ' +
				'HEIGHT="167" ' +
			'>' +

				'<PARAM NAME="MOVIE" VALUE="/site_files/banner.swf?' + sQuery + '"> ' +
				'<PARAM NAME="PLAY" VALUE="true"> ' +
				'<PARAM NAME="LOOP" VALUE="false"> ' +
				'<PARAM NAME="QUALITY" VALUE="high"> ' +
				'<PARAM NAME="SCALE" VALUE="showall"> ' +
				'<PARAM NAME="MENU" VALUE="false"> ' +
				'<EMBED '+
					'SRC="/site_files/banner.swf?' + sQuery + '" ' +
					'WIDTH="755" ' +
					'HEIGHT="167" ' +
					'PLAY="true" ' +
					'LOOP="false" ' +
					'QUALITY="high" ' +
					'SCALE="showall" ' +
					'TYPE="application/x-shockwave-flash" ' +
					'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" ' +
					'MENU="false" ' +
				'></EMBED>' +
			'</OBJECT>';
		document.write(embedText);
		// this next line is needed for netscape 4.7.  Sometimes netscape displays a blank screen instead of the ile.swf
		// because the embed tag is being written out via javascript.
		// If you try to display the settings box for flash player, it will finally come around, but otherwise it is blank
		// this dummy setTimeout function seems to keep things alive long enough to solve this problem
		document.write('<sc'+'ript>setTimeout(function() {}, 1000);</sc'+'ript>');
	//-->

