// JavaScript Document
<!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  End -->

<!-- Begin
function monthPage() {
today = new Date();
m = new Array(
"jan.html","feb.html",
"mar.html","apr.html","may.html",
"jun.html","jul.html","aug.html",
"sep.html","oct.html",
"nov.html","dec.html"
);
window.location = m[today.getMonth()];
}
//  End -->
<!-- Begin
function menuPage() {
today = new Date();
n = new Array(
"janmenus.html","febmenus.html",
"marmenus.html","aprmenus.html","maymenus.html",
"junmenus.html","julmenus.html","augmenus.html",
"sepmenus.html","octmenus.html",
"novmenus.html","decmenus.html"
);
window.location = n[today.getMonth()];
}
//  End -->
<!--
function calcHeight()
{
  //find the height of the internal page
  var the_height=
    document.getElementById('frame').contentWindow.
      document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById('frame').height=
      the_height;
}
//-->
<!--
function showhide(id){ 
if (document.getElementById){ 
obj = document.getElementById(id); 
if (obj.style.display == "none"){ 
obj.style.display = ""; 
} else { 
obj.style.display = "none"; 
} 
} 
} 
// -->
<!-- ImageReady Preload Script (mappos2.psd) -->
<!--

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		eatery_over = newImage("map_images/eatery-over.gif");
		union_over = newImage("map_images/union-over.gif");
		java_over = newImage("map_images/java-over.gif");
		deli_over = newImage("map_images/deli-over.gif");
		pizza_over = newImage("map_images/pizza-over.gif");
		chick_over = newImage("map_images/chick-over.gif");
		fast_over = newImage("map_images/fast-over.gif");
		timber_over = newImage("map_images/timber-over.gif");
		scholars_over = newImage("map_images/scholars-over.gif");
		snack_over = newImage("map_images/snack-over.gif");
		dubois_over = newImage("map_images/dubois-over.gif");
		preloadFlag = true;
	}
}

// -->
