//University of Idaho department of art jsbName = navigator.appName;			bVer = parseInt(navigator.appVersion);			//alert (bVer) //check bVer with alert window			if      (bName == "Netscape" && bVer >= 4) br = "n4";else if (bName == "Microsoft Internet Explorer" && bVer >= 4) br = "e4";else br = "3";//alert (br) //check bVer with alert window//contact info widow opener on index.htmlfunction contactInfo() {remote = window.open("","windowName","resizable,dependent,width=360,height=220,scrollbars=1");	remote.location.href = "contactInfo.html";	}//contact info widow opener on info/info.htmlfunction contactInfo2() {remote = window.open("","windowName","resizable,dependent,width=360,height=220,scrollbars=1");	remote.location.href = "../contactInfo.html";	}//a sample remote maker not workingfunction makeRemote() {	remote = window.open("","zip","resizable,dependent,width=266,height=400,scrollbars=1");	if (br == "n4") remote.location.href = "../../windows/zipDetail.html";	if (br== "e4") remote.location.href = "../../windows/zipDetail.html";	if (br == "3") remote.location.href = "../../windows/zipDetail.html";	}