/* workaround for Microsoft IE hotfix: "Microsoft Security Advisory (912945)" - 
see http://www.microsoft.com/technet/security/advisory/912945.mspx for info */

// inserts the <object> and <embed> tags to circumvent the new restriction in IE (since April 11 2006)

function displayMovie() {
	  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="1044" height="694" id="index" align="middle">');
   document.write(' <param name="allowScriptAccess" value="sameDomain" />');
 
   
   document.write(' <param name="movie" value="index.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><embed src="index.swf" quality="high" bgcolor="#000000" width="1044" height="694" name="index" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
   document.write('</object>');
}


