ver=parseInt(navigator.appVersion)
ie4=(ver>3  && navigator.appName!="Netscape")?1:0
ns4=(ver>3  && navigator.appName=="Netscape")?1:0
ns3=(ver==3 && navigator.appName=="Netscape")?1:0

function playSound(sound) 
{
	if (ie4) document.all['BGSOUND_ID'].src=sound;
	if ((ns4||ns3)&& navigator.javaEnabled())
	{
		self.document.Bach.play()
	}
}

function stopSound() 
{
	if (ie4) document.all['BGSOUND_ID'].src='jsilence.wav';
	if ((ns4||ns3) && navigator.javaEnabled())
	{
		self.document.Bach.stop()
	}
}

