//if (document.layers) {
//	origWidth = innerwidth;
//	origHeight = innerheight;
//	}
//function reloadPage() {
//	if (innerWidth != origWidth || innerHeight != origHeight)
//	location.reload();
//	}
//if (document.layers) onresize = reloadPage;	
			
function movewindow(){
moveTo(0,0);
windowWidth = screen.width-2;
windowHeight = 745;
resizeTo(windowWidth, windowHeight);
}

function newWindow(){
popup = window.open("", "popup", "width=625, height=480,scrollbars=1,resizable=1,menubar=1");
popup.focus();
}

function newBiggerWindow(){
popup = window.open("", "popup", 'width=790, height=500,scrollbars=1,menubar=1,toolbar=1,location=1,resizable=1');
popup.focus();
}

function goToHome() {
window.location="http://www.baystatealumni.com/default.asp";
}

function Login(){
var done=0;
var username=document.login.username.value;
username=username.toLowerCase();
var password=document.login.password.value;
password=password.toLowerCase();
if (username=="azwebb" && password=="jkjkjm") {
window.location="/admin/viewContacts.asp"; done=1; }
}

