// 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(destination)
{
    document.write('<object type="application/x-shockwave-flash" data="/flash/preloader.swf?destination='+destination+'" width="744" height="152">\n');
    document.write('<param name="movie" value="/flash/preloader.swf?destination='+destination+'" />\n');
	document.write('<param name="menu" value="false" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
    document.write('</object>\n');
}
