I have created a place holder and inserted the following code into it. It works fine locally but when I upload it to my website it appears to load but does not play . The file is an MP4 and is ~25MB. I downloaded the code after viewing a number of sites which appear to be using similar code. The code:

<div align="center">
<object id="mediaPlayer" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" width="640" height="545" Codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">
<param name="autoStart" value="true"/>
<param name="url" value="tent_fold.mp4" />
<param name="wmode" value="transparent" />
<param name="uiMode" value="full" />
<param name="loop" value="false" />
<embed id="EmbedmediaPlayer" type="application/x-mplayer2" src=" + videolink + " width="350" height="260">
</embed>
</object>
</div>

Where is this failing please?
td