// 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_siac_tour()
{
   document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH=550 HEIGHT=400>\n');
   document.write('<param name="movie" value="/builderimg/tour/siac_tour.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<param name="wmode" value="transparent" />\n');
   document.write('<param name="bgcolor" value="#FFFFFF" />\n');
   document.write('<EMBED src="/builderimg/tour/siac_tour.swf" quality=high wmode=transparent bgcolor=#FFFFFF  WIDTH=550 HEIGHT=400 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>\n');
   document.write('</object>\n');
}
