// flash assembly script
function loadFlashFunction() {
	// flash will not display in firefox if the following parameters are present within the object tag for some reason
	// classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
	// codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
	document.write('<object data="swfs/splash.swf" width="750" height="250" type="application/x-shockwave-flash">');
	document.write('<param name="movie" value="swfs/splash.swf">');
	document.write('<param name="loop" value="true">');
	document.write('<param name="quality" value="best">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<param name="bgcolor" value="#FFFFFF">');
	document.write('Flash plugin must be installed in the browser to view the Flash movie');
	document.write('</object>');
}