	//+
	ver = parseInt(navigator.appVersion);
	ie = ((ver > 3) && (navigator.appName != 'Netscape')) ? true : false;
	ns = ((ver >= 3) && (navigator.appName == 'Netscape')) ? true : false;
	//- PlaySound -//
	function PlaySound(cKey) {
		if (ie == true) {
			document.all['IE' + cKey].src = document.all['IE' + cKey].usesrc;
		}
		if ((ns == true) && (navigator.javaEnabled() == true) && (self.document['NS' + cKey].IsReady() != 0)) {
			self.document['NS' + cKey].play();
		}
	}
	//- StopSound -//
	function StopSound(cKey) {
		if (ie == true) {
			document.all['IE' + cKey].src = 'jsilence.mp3';
		}
		if ((ns == true) && (navigator.javaEnabled() == true) && (navigator.mimeTypes['audio/x-mp3'] != null)) {
			self.document['NS' + cKey].stop();
		}
	}
