//this will be the final video link (absolute path)
var videolink = "http://www.sigmaaldrich.tv/hplc/selectivity_rp.wmv";


var oeTags = '<object id="mediaPlayer" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"'
         + 'width="480" height="425"'
         + '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="http://www.sigmaaldrich.tv/hplc/selectivity_rp.wmv" />'
         + '   <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       ="480"'
         + '       height      ="425">'
         + '   </embed>'
         + '</object>';
document.write(oeTags);
