function stopBackgroundMusic () {
//alert("stopBackgroundMusic invoked");

	function thisMovie(movieName) {
		// IE and Netscape refer to the movie object differently.
		// This function returns the appropriate syntax depending on the browser.
		if (navigator.appName.indexOf ("Microsoft") !=-1) {
		  return window[movieName]
		} else {
		  return document[movieName]
		}
	}

	if (!document.getElementById) return false;
	if (!document.getElementById("backgroundMusicSWF")) return false;
	var movieName = "backgroundMusicSWF";
	thisMovie(movieName).GotoFrame(24);
}