
function setPage(){
	var strElementId = document.frmPage.txtPage.value;
	if (strElementId != ""){
		var strTDId = "td" + strElementId;
		var strAId = "a" + strElementId;
		document.getElementById(strTDId).className = "navon";
		document.getElementById(strAId).className = "anavon";
	}
}

function classChange(strElementId){
	var strTDId = "td" + strElementId;
	var strAId = "a" + strElementId;
	if (IE5 || NS6){	
		var oTd = document.getElementById(strTDId);
		var oA = document.getElementById(strAId);
		if ((oTd != null) && (oA != null)) {
			if (oTd.className != "navon"){
				switch (oTd.className){
					case "navup":
						oTd.className = "navover";
						oA.className = "anavover";
						break;
					case "navover":
						oTd.className = "navup";
						oA.className = "anavup";
						break;
					default:
						oTd.className = "navup";
						oA.className = "anavup";
				}
			}
		}
	}
}

function clickChild(clickId){
	document.getElementById("td" + clickId).firstChild.click();
}

 function launch(url) {
	 window.open(url);
	 //self.name = "Home";
	 //remote = open(url, "Window", "resizable,scrollbars,status,width=700,height=500,left=100,top=100");
}