function showPage(val){
	if(val == "newzware"){
		window.location = "http://" + server + ":" + port + "/icanon/newzware/" + indexPage;
	}
	else{
		document.getElementById("pg").value = val;
		document.frm.action = "http://" + server + ":" + port + "/icanon/" + indexPage;
		document.frm.submit();
	}
}