<!-- // Begin hiding from old browsers

// Rollover IMAGE functions
//-----------------------------------------------------------------------------
loaded = 0;

function loadImages() {
	if (document.images) {

	spotsOn = new Image();
	spotsOn.src = "/img/logoTop-on.gif";
	spotsOff = new Image();
	spotsOff.src = "/img/logoTop-off.gif";
	homeAudioOn = new Image();
	homeAudioOn.src = "/img/Home-Audio-Spots-On.gif";
	homeAudioOff = new Image();
	homeAudioOff.src = "/img/Home-Audio-Spots-Off.gif";
	homeVideoOn = new Image();
	homeVideoOn.src = "/img/Home-Video-Spots-On.gif";
	homeVideoOff = new Image();
	homeVideoOff.src = "/img/Home-Video-Spots-Off.gif";
					
	loaded = 1;
	}
}

//if (window.attachEvent) window.attachEvent("onload", loadImages());

function imgChange(imageName,newsource) {
	if (document.images && loaded==1) {
 		document.images[imageName].src = eval(newsource + ".src");
	}
}

function changeSpotNav(objId1, className1, objId2, className2) {
    	document.getElementById(objId1).className = className1;
    	document.getElementById(objId2).className = className2;
}

function changeButton(objId, colorName) {
    	document.getElementById(objId).style.background = colorName;
}




// END MENU
//-----------------------------------------------------------------------------

function openHTML( pageToLoad, winname, width, height, center) {
		self.name = "winMain";
		xposition=0; yposition=0;
		if ((parseInt(navigator.appVersion) >= 4 ) && (center)){
			xposition = (screen.width - width) / 2;
			yposition = (screen.height - height) / 2;
		}
		args = 'width=' + width + ',height=' + height + ',location=0,menubar=0,resizable=1,';
		args = args + 'scrollbars=1,status=0,titlebar=0,toolbar=0,hotkeys=0,screenx=' + xposition + ',';
		args = args + 'screeny=' + yposition + ',left=' + xposition + ',top=' + yposition;
	
		window.open( pageToLoad,winname,args);
}

//-----------------------------------------------------------------------------
// End of hide. -->