

if (navigator.appName == "Netscape") {
    window.captureEvents(Event.RESIZE);
    //window.onresize =
        function() { location.reload(); return false; }
}
self.onerror = function() { return true; }


function closer() {
		window.close()
}


function checkform() {
var pid;
	if (document.formentry.pid.value == "") {
		pid = prompt("Empty field: Profs ID.","")
		document.formentry.pid.value = pid; }

// Now submit the form -

}


function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=0,menubar=false,status=false' );
}

function displayWT(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=1,menubar=false,status=false' );
}


 

