var isNS = (navigator.appName == "Netscape");

function gotoUrl(UrlName) {
	top.location = UrlName
}

function hilite(id) {
	srcElement = document.all(id);
	bgColor = "MediumBlue";
	if (id == idname) bgColor = "MediumSeaGreen"

	if (isNS) 
		srcElement.backgroundColor = bgColor
	else
		srcElement.style.backgroundColor = bgColor
}

function unHilite(id) {
	srcElement = document.all(id);
	bgColor = "";

	if (id == idname) bgColor = "green";
	if (isNS)
		srcElement.backgroundColor = bgColor
	else
		srcElement.style.backgroundColor = bgColor
}

function window_onload() { 
	srcElement = document.all(idname);
	if (isNS)
		srcElement.backgroundColor = "green"
	else
		srcElement.style.backgroundColor = "green";
}


