Howdy,
With the following code:

Code:
<object type="application/x-shockwave-flash" data="images/homepageflash.swf" 
   width="360" height="276">
   <param name="movie" value="images/homepageflash.swf" />
   <img src="noflash.gif" width="200" height="100" alt="" />
</object>
Can I make the "noflash.gif" link to another webpage if clicked?

Also he mentions:
"Just include one sacrificial movie at the front of your site that has the codebase attribute. "

What would that exact code be?

I see:
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="360" height="276">
    <param name="movie" value="images/homepageflash.swf">
    <param name="quality" value="high">
    <embed src="images/homepageflash.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="360" height="276"></embed>
  </object>
Would I just have to include:
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="360" height="276"></object>
?

Thanks,
Computerpain