// rollover effects of the index bar

	function rollon(a) {
		a.style.backgroundColor='#ffce31';
		a.style.border = 'solid 1px #444444';
	}

	function rolloff(a) {
		a.style.backgroundColor='#ffffff';
		a.style.border = '#666666 solid 1px';
	}
	
	function rolloffcurrent(a) {
		a.style.backgroundColor='#fff400';
		a.style.border = 'solid 1px #444444';
	}
	

// showing campus map with designated position in a separate popup window
	var popupWindow;
	var locationName;
	function showMap(venue) {
		locationName = venue;
		if(!popupWindow || popupWindow.closed) {
			popupWindow = window.open("campusmap.html","popup","scrollbars=no,toolbar=no,height=700,width=815");
		} else {
			popupWindow.findLocation();
		}
		popupWindow.focus();
	}


// eyeballs cursor tracing pictures
		function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  	if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    	document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  	else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
	}
	MM_reloadPage(true);