// ExternalInterface script to communicate with the Flash Audio Player

function callExternalInterface() {
	var flashObj = getMovie('audioplayer');
	flashObj.stopAudio();
}

function getMovie(movieName) {
	return document.getElementById(movieName);
}