

var WMP7;

if ( navigator.appName != "Netscape" ){
     WMP7 = new ActiveXObject('WMPlayer.OCX');
}

if ( WMP7 )
{
     document.write ('<OBJECT ID=MediaPlayer ');
     document.write (' CLASSID=CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6');
     document.write (' standby="Loading Microsoft Windows Media Player components..."');
     document.write (' TYPE="application/x-oleobject" width="475" height="64">');
     var contenido= '<PARAM NAME="url" VALUE="'+URLMEDIA+ '">';
     document.write (contenido);
     document.write ('<PARAM NAME="AutoStart" VALUE="true">');
     document.write ('<PARAM NAME="ShowControls" VALUE="1">');
     document.write ('<PARAM NAME="ShowStatusBar" VALUE="1">');
     document.write ('<PARAM NAME="ShowDisplay" VALUE="0">');	 	 
     document.write ('<PARAM NAME="enableContextMenu" VALUE="0">');		  
     document.write ('<PARAM NAME="uiMode" VALUE="mini">');
     document.write ('</OBJECT>');
}

else
{
     //IE Code
     document.write ('<OBJECT ID=MediaPlayer ');
     document.write ('CLASSID=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95 ');
     document.write ('CODEBASE=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715 ');
     document.write ('standby="Loading Microsoft Windows Media Player components..." ');
     document.write ('TYPE="application/x-oleobject" width="505" height="64">');
     var contenido= '<PARAM NAME="FileName" VALUE="'+URLMEDIA+'">';
     document.write (contenido);
     document.write ('<PARAM NAME="AutoStart" VALUE="true">');
     document.write ('<PARAM NAME="ShowControls" VALUE="1">');
     document.write ('<PARAM NAME="ShowStatusBar" VALUE="1">');	 
     document.write ('<PARAM NAME="ShowDisplay" VALUE="0">');	 
     document.write ('<PARAM NAME="enableContextMenu" VALUE="0">');	 

     //Netscape code
     document.write ('    <Embed type="application/x-mplayer2"');
     document.write ('        pluginspage="http://www.microsoft.com/windows/windowsmedia/"');
     var contenido= '        filename="'+URLMEDIA+'"';
     document.write (contenido);
     contenido= '        src='+URLMEDIA+'"';
     document.write (contenido);
     document.write ('        Name=MediaPlayer');
     document.write ('        ShowControls=-1');
     document.write ('        ShowDisplay=0');
     document.write ('        ShowStatusBar=-1');
     document.write ('        enableContextMenu=0');	 
     document.write ('        width=475');
     document.write ('        height=64>');
     document.write ('    </embed>');

     document.write ('</OBJECT>');
}

