/* 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://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="1188" height="694" id="index" align="middle">');
   document.write('<param name="allowScriptAccess" value="sameDomain" />');
   document.write('<param name="allowFullScreen" value="false" />');
   
   document.write('<param name="movie" value="index.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" />	<embed src="index.swf" quality="high" wmode="transparent" bgcolor="#ffffff" width="1188" height="694" name="index" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
   document.write('</object>');
}






