function $mp3(clip){
this.outstring="";
agt=navigator.userAgent.toLowerCase();
var WMP7; if ((navigator.appName != "Netscape") && (agt.indexOf('mac')==-1)){ WMP7 = new ActiveXObject('WMPlayer.OCX'); }
if ( WMP7 ){
this.outstring+='<OBJECT ID=MediaPlayer CLASSID="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6" standby="Loading Microsoft Windows Media Player components..." TYPE="application/x-oleobject" width="250" height="60"><PARAM NAME="url" VALUE="mp3/'+clip+'.mp3"><PARAM NAME="AutoStart" VALUE="true"><PARAM NAME="ShowControls" VALUE="1"><PARAM NAME="Volume" VALUE="100"></OBJECT>';
} else {
this.outstring+='<OBJECT ID=MediaPlayer CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="Loading Microsoft Windows Media Player components..." TYPE="application/x-oleobject" width="200" height="60"><PARAM NAME="FileName" VALUE="mp3/'+clip+'.mp3"><PARAM NAME="AutoStart" VALUE="true"><PARAM NAME="Volume" VALUE="100"><embed src="mp3/'+clip+'.mp3"  type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" name="MediaPlayer" autoplay="true" width=200 height=60 bgcolor=#c6c6c6 autostart=true controller=true></EMBED></OBJECT>';
}
this.write=function(){ document.writeln(this.outstring); }
return this;
}