nel tuo sito hai questo pezzo di codice

codice:
<body>
...
<td width="713" height="297" valign="top">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" 
  width="713" height="297">
     <param name="movie" value="swf/intro.swf">
     <param name=quality value=high>
     <embed src="swf/intro.swf" quality=high 
  pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" 
  type="application/x-shockwave-flash" width="713" height="297"></embed> 
</object>
</td>

Modifica nel seguente modo

codice:
<body onload="showFlash()">
...
<td width="713" height="297" valign="top" id="flashcnt">
</td>
Nell'header della pagina scrivi

codice:
<head>
   <script type="text/javascript">
   function showFlash() {
     var myObject = document.createElement('object');
     myObject.width = "713";
     myObject.height = "297";
     myObject.type = "application/x-shockwave-flash";  
     myObject.data = "swf/intro.swf";
     
     document.getElementById('flashcnt').appendChild(myObject);    }
   </script>
</head>
Però non l'ho ancora provato e l'ho scritto di corsa, quindi può darsi che non funzioni o non sia crossbrowser...
fammi sapere

Ciao