|
Looks good.
But here is another method you can do if someone doesn't have flash player installed. It will play the flash file if you have the appropriate player otherwise the <div> called "flash-mast" will display. This will provide them the link they will need in order to play the flash file. This is a little more flexible as you can even put a still image if you have specific clients that aren't allowed to download anything on their work computers.
<div id="flash-mast">
<p>Please upgrade your <a href="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" class="external" rel="external">Flash Plugin</a> and enable JavaScript.</p>
</div>
<script type="text/javascript">
var so = new SWFObject("multimedia/mast.swf", "swf-mast", "800", "280", "7", "#ffffff");
so.addParam("wmode", "transparent");
so.write("flash-mast");
</script>
|