<!--

function launchWin(winurl, winname, winfeatures){
	newwin = window.open(winurl, winname, winfeatures);
}

// cls = CSS:object.class for newMpegPlayer
function newMpegPlayer(cls, scr, width, height, volume, controller, autoplay, loop) {
   var playerCode = '';
   playerCode += '<object ';
   playerCode += 'classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" ';
   playerCode += 'codebase="http://www.apple.com/qtactivex/qtplugin.cab" ';
   playerCode += 'class="' + cls + '" ';
   playerCode += 'width=' + width + ' height=' + height + '>';
   playerCode += '<param name=src value="' + scr + '">';
   playerCode += '<param name=volume value=' + volume + '>';
   playerCode += '<param name=controller value=' + controller + '>';
   playerCode += '<param name=autoplay value=' + autoplay + '>';
   playerCode += '<param name=loop value=' + loop + '>';
   playerCode += '<embed ';
   playerCode += 'src="' + scr + '" ';
   playerCode += 'type="audio/mpeg" ';
   playerCode += 'width=' + width + ' height=' + height + ' ';
   playerCode += 'volume=' + volume + ' ';
   playerCode += 'controller="' + controller + '" ';
   playerCode += 'autostart="' + autoplay + '" ';
   playerCode += 'loop="' + loop + '" ';
   playerCode += 'pluginspace="http://www.apple.com/quicktime/download/">';
   playerCode += '</embed>';
   playerCode += '</object>';
   
   document.write(playerCode);
}

// -->
