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

function classChange(strElementId){
	var strTDId = "td" + strElementId;
	var strAId = "a" + strElementId;
	if (IE5 || NS6){
		if (document.getElementById(strTDId).className != "navcellon"){ 
			if (document.getElementById(strTDId).className == "navcelloff"){
				document.getElementById(strTDId).className = "navcellover";
				document.getElementById(strAId).className = "navover";
			}else{
				document.getElementById(strTDId).className = "navcelloff";
				document.getElementById(strAId).className = "navoff";
			}
		}
	}
}

function navigate(sPage){
	var tempPage = sPage +".html"
	window.document.location = tempPage
}


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