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
		}
	}
}

//var playerIndex = 0;
//function ap_InjectPlayer(mediaUrl)
//{
//    playerIndex ++;
//    FlashReplace.replace("audioflashreplace", "/DesktopModules/AHSIS.MediaGallery/Resources/player.swf", "audioplayer" + playerIndex, 290, 24, 7,
//        {
//            data : "/DesktopModules/AHSIS.MediaGallery/Resources/player.swf",
//            FlashVars : "playerID=" + playerIndex + "&amp;soundFile=" + mediaUrl + "&amp;autostart=yes",
//            menu : "false",
//            wmode : "transparent"
//        }
//    );
//    
//}
