// JavaScript Document

var currentID = "";

function stopAudio(id) {//stops all flash objects, except this id

		
		if (currentID == "") {
			currentID = id;
		} else {
			if (id != currentID) {
				document.getElementById(currentID).stopMe();
				currentID = id;
			}
		}
	
}




