/* Netscape 4 Resize bug */

if (document.layers) {
	var widthCheck = window.innerWidth;
	var heightCheck = window.innerHeight;
	window.onResize = resizeFix;
}

function resizeFix() {
	with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)){
	if (widthCheck != window.innerWidth || heightCheck != window.innerHeight)
	document.location.href = document.location.href;
	}}
	
}


//pop up window
function popUpWindow(link, content) {
	var contentPage = content;
	var contentSet = setCookie("thisContent", contentPage ,null, "/");
	window.open('/popUps/' + link + '.shtml','newwindow','location=0,resizable=0,scrollbars=0,width=400,height=400');
	//return true;
}

function popWinOut(link) {
	window.open(link);
	window.top.close();
	//return true;
}

//displays link in status bar
function displayThis(link) {
	window.status=link;
	return true;
}

/* image swap */

// initialize images


if (document.images) {
	alumniOff = new Image(31,128);
	alumniOff.src = "images/Alumni1.gif";
	contactOff = new Image(31,107);
	contactOff.src = "images/ContactUs1.gif";
	siteMapOff = new Image(31,138);
	siteMapOff.src = "images/SiteMap1.gif";
	homeOff = new Image(31,138);
	homeOff.src = "images/Home1.gif";

	alumniOn = new Image(31,128);
	alumniOn.src = "images/Alumni2.gif";
	contactOn = new Image(31,107);
	contactOn.src = "images/ContactUs2.gif";
	siteMapOn = new Image(31,138);
	siteMapOn.src = "images/SiteMap2.gif";
	homeOn = new Image(31,138);
	homeOn.src = "images/Home2.gif";
}



function utilOn(imgName) {
	if (document.images) { 
		imgOn = eval(imgName + "On.src");
		document [imgName].src = imgOn;
	}
}

function utilOff(imgName) {
	if (document.images) {
		imgOff = eval(imgName + "Off.src");
		document [imgName].src = imgOff;
	}
}

var months = new Array('Jan','Feb','Mar','May','Apr','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
var thisYear = new Date();
var whatMonth = thisYear.getMonth();
var whatYear = thisYear.getYear();

