var ap_instances = new Array();

function ap_stopAll(playerID) {
	for(var i = 0;i<ap_instances.length;i++) {
		try {
			if(ap_instances[i] != playerID) document.getElementById("audioplayer" + ap_instances[i].toString()).SetVariable("closePlayer", 1);
			else document.getElementById("audioplayer" + ap_instances[i].toString()).SetVariable("closePlayer", 0);
		} catch( errorObject ) {
			// stop any errors
		}
	}
}

function ap_registerPlayers() {
	var objectID;
	var objectTags = document.getElementsByTagName("object");
	for(var i=0;i<objectTags.length;i++) {
		objectID = objectTags[i].id;
		if(objectID.indexOf("audioplayer") == 0) {
			ap_instances[i] = objectID.substring(11, objectID.length);
		}
	}
}

var ap_clearID = setInterval( ap_registerPlayers, 100 );


function b_audio_popup(divid){

		var divhtml = eval(divid);
		var strResult = '<HTML>\n';
		strResult += '<HEAD>\n';
		strResult += '<TITLE>Popup Player</TITLE>\n';
		strResult += '</HEAD>\n';
		strResult += '<BODY>\n';
		strResult += divhtml;
		strResult += '</BODY>\n';
		strResult += '</HTML>';

			numWidth = 320;
			numHeight = 50;
		
/*
		if(podPressMP3PlayerWrapper) {
			numWidth = numWidth + 50;
		} else {
			numWidth = numWidth + 10;
		}
*/
		numHeight = numHeight + 50;
		
		newwindow=window.open('about:blank', 'billyPlayer', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+numWidth+',height='+numHeight);
		newdocument=newwindow.document;
		newdocument.write(strResult);
		newdocument.close();
	
}


function b_audio_popup2(mp3){

		//var divhtml = eval(divid);
		var strResult = '<HTML>\n';
		strResult += '<HEAD>\n';
		strResult += '<TITLE>Popup Player</TITLE>\n';
		strResult += '</HEAD>\n';
		strResult += '<BODY>\n';
		strResult += 
'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="170" height="170" scale="exactfit" title="mp3">'+
  '<param name="movie" value="http://www.chineselearnonline.com/wp-content/plugins/wp_dict/musicplayer.swf?song_url='+mp3+'" />'+
  '<param name="quality" value="high" />'+
  '<embed src="http://www.chineselearnonline.com/wp-content/plugins/wp_dict/musicplayer.swf?song_url='+mp3+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" scale="exactfit" width="170" height="170"></embed>'+
'</object>';
		strResult += '</BODY>\n';
		strResult += '</HTML>';

			numWidth = 320;
			numHeight = 50;
		
/*
		if(podPressMP3PlayerWrapper) {
			numWidth = numWidth + 50;
		} else {
			numWidth = numWidth + 10;
		}
*/
		numHeight = numHeight + 50;
		
		newwindow=window.open('about:blank', 'billyPlayer', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+numWidth+',height='+numHeight);
		newdocument=newwindow.document;
		newdocument.write(strResult);
		newdocument.close();
	
}

