// JavaScript Document

//active content preparation for browser changes...
//replace tag for active content with a script that calls code outside of your HTML page

//more information here...http://www.adobe.com/devnet/activecontent/articles/devletter.html


//this function will write the code for the object/applet/embed tag in the html file
function RunFlashIntro()
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4" width="750" height="420" align="absmiddle">\n');
    document.write('<param name="movie" value="flash/intro.swf">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<embed src="flash/intro.swf" width="750" height="420" align="absmiddle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>\n');
    document.write('</object>\n');
}
