// JavaScript Document

var currentPlayID = "";

function stopAudio(id) 
{

		if (currentPlayID == "") {
			currentPlayID = id;
		} else {
			if (id != currentPlayID) {
				document.getElementById(currentPlayID).stopMe();
				currentPlayID = id;
			}
		}

}


