<!-- 
var expireDate = new Date;
expireDate.setMonth(expireDate.getMonth()+12);
var strApplyScope = "/"
var bgMusicOn = "http://www.darklands.net/music/Darklands1.mid";
var bgMusicOff = " ";
var musicState = "";

var strCurrDoc = ""
strCurrDoc = window.location

function getMusic() {
	if (document.cookie != "") {
		musicState = document.cookie.split("=")[1];
	}
	else setMusic();
}

function setMusic() {
	if (musicState == bgMusicOn) {
		musicState = bgMusicOff;
	}
	else {musicState = bgMusicOn;}

	document.cookie = "musicState="+musicState+";path="+strApplyScope+";expires="+expireDate.toGMTString();
}

function loadMusic() {
	if (!((inetver == "")||(inetver == "n2"))) {
		document.write("<EMBED src="+musicState+" AUTOSTART=true LOOP=1 HEIGHT=0 WIDTH=0 HIDDEN=yes>");
	}
}

// -->

