<!-- sound control script Flash (explorer) and Wave (netscape) End -->

var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

function controlSound(sndAction,sndObj)	{

	var mc;
	var temp;
	
	if (InternetExplorer) temp = sndObj + "";
	else temp = "document." + sndObj;
	mc = eval(temp);

	if (sndAction=="play")	{
		mc.GotoFrame(1);
	}
	else if (sndAction == "stop")	{
	 	mc.StopPlay();
	}	
	else {
		alert(sndAction + " Action is not defined.");
		return false;
	}
	return false;
}	
//-->
<!-- sound control script Flash (explorer) and Wave (netscape) End -->

