// run_active_content.js
// Script to handle active content fix in IE.  
// This eliminates the "Click to activate and use this control" messages.
//
// Each swf file that is used in the website has a function to call it.


function Run_homepage()
{
   document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="430" HEIGHT="250" id="homepage" ALIGN="">\n');
   document.write('<param name="movie" value="homepage.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<param name="bgcolor" value="#FFFFFF" />\n');
   document.write('<EMBED src="homepage.swf" quality=high bgcolor=#FFFFFF  WIDTH="430" HEIGHT="250" NAME="homepage" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>\n');
   document.write('</object>\n');
}

