var ap_count = 0;

function ap_stopAll(playerID) 
{
	for(var i = 1; i <= ap_count; i++) {
		try {
      document.getElementById("audioplayer" + i).SetVariable("closePlayer", i == playerID ? 0 : 1);
		} 
    catch (errorObject) {
			// stop any errors
		}
	}
}

function addplayer(url)
{
  ap_count++;
  var flashobj = '<object class="audioplayer" type="application/x-shockwave-flash" data="/player/player2.swf" id="audioplayer'+ap_count+'" height="24" width="290">';
  flashobj += '<param name="movie" value="/player/player2.swf"><param name="quality" value="high"><param name="menu" value="false"><param name="wmode" value="transparent">';
  flashobj += '<param name="FlashVars" value="playerID=' + ap_count + '&amp;colour=0xA9C4C4&amp;hostname=' + window.location.hostname + '&amp;soundFile=' + url + '">';
  flashobj += '<a href="http://www.adobe.com/go/getflashplayer" target="_blank"><img src="/img/get_flash.gif" style="float:left;margin:0 10px 10px 10px" ></a>';
  flashobj += '<div style="font-size:8pt">You need to install and enable the Flash player to listen to the meditations.<br>';
  flashobj += 'Click the button to the left to install the Flash player, then <a href="javascript:location.href=location.href">Refresh</a> the page.</div></object>';
  document.write(flashobj);
}




