

<!--

var MSIE = navigator.appName=="Microsoft Internet Explorer";

function PlaySound(URL) {

	if (parseInt(navigator.appVersion) < 4) return false;

	if (MSIE) {

		document.all.sound1.src = (URL);

	} else {

		document.sound1.play(false, URL);

	}

}



function StopSound() {

	if (parseInt(navigator.appVersion) < 4) return false;

	if (MSIE) {

		document.all.sound1.src = ("");

	} else {

		document.sound1.stop();

	}

}



if (!MSIE) {

	document.write('<embed src="Musique/arangoth.mid" autostart=false hidden=true name="sound1" mastersound>');

} else {

	document.write('<bgsound id="sound1" loop="0">');

}

//-->

