function showWMV(trailer, w, h) {
 var WMP7;
 var opt = "";
 if ( navigator.appName != "Netscape" ){   
     WMP7 = new ActiveXObject('WMPlayer.OCX');
 }
 opt = "";
 // Windows Media Player 7 Code
 if ( WMP7 ) {
     opt = opt + '<OBJECT ID=MediaPlayer ';
     opt = opt + ' CLASSID=CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6';
     opt = opt + ' standby="Loading Microsoft Windows Media Player components..."';
     opt = opt + ' TYPE="application/x-oleobject" width="'+w+'" height="'+(h+64)+'">';
     opt = opt + '<PARAM NAME="url" VALUE="'+trailer+'">';
     opt = opt + '<PARAM NAME="AutoStart" VALUE="true">';
     opt = opt + '<PARAM NAME="ShowControls" VALUE="1">';
     opt = opt + '<PARAM NAME="ShowDisplay" VALUE="0">';
     opt = opt + '<PARAM NAME="ShowStatusbar" VALUE="1">';
     // opt = opt + '<PARAM NAME="uiMode" VALUE="mini">';
     opt = opt + '<PARAM NAME="Width" VALUE="'+w+'">';
     opt = opt + '<PARAM NAME="Heigth" VALUE="'+h+'">';
     opt = opt + '</OBJECT>';
 } else {
     // Windows Media Player 6.4 Code
     //IE Code
     opt = opt + '<OBJECT ID=MediaPlayer ';
     opt = opt + 'CLASSID=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95 ';
     opt = opt + 'CODEBASE=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715 ';
     opt = opt + 'standby="Loading Microsoft Windows Media Player components..." ';
     opt = opt + 'TYPE="application/x-oleobject" width="'+w+'" height="'+(h+64)+'">';
     opt = opt + '<PARAM NAME="url" VALUE="'+trailer+'">';
     opt = opt + '<PARAM NAME="AutoStart" VALUE="true">';
     opt = opt + '<PARAM NAME="ShowControls" VALUE="1">';
     opt = opt + '<PARAM NAME="ShowDisplay" VALUE="0">';
     opt = opt + '<PARAM NAME="ShowStatusbar" VALUE="1">';
     // opt = opt + '<PARAM NAME="uiMode" VALUE="mini">';
     opt = opt + '<PARAM NAME="Width" VALUE="'+w+'">';
     opt = opt + '<PARAM NAME="Heigth" VALUE="'+h+'">';
     //Netscape code

     opt = opt + '    <Embed type="application/x-mplayer2"';
     opt = opt + '        pluginspage="http://www.microsoft.com/windows/windowsmedia/"';
     opt = opt + '        filename="'+trailer+'"';
     opt = opt + '        src="'+trailer+'"';
     opt = opt + '        Name=MediaPlayer';
     opt = opt + '        ShowControls=1';
     opt = opt + '        ShowDisplay=0';
     opt = opt + '        ShowStatusBar=1';
     opt = opt + '        width='+w+'';
     opt = opt + '        height='+h+'>';
     opt = opt + '    </embed>';

     opt = opt + '</OBJECT>';
 }
 return opt;
}

