// 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'
win1 = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win1.window.focus(); }
}
//  End -->

function MenuView(wkst) {

day = new Date();
id = day.getTime();
var mwx = (screen.width - 600) / 2;
var mwy = (screen.height - 500) / 2;
URL = 'http://www.uafdining.com/dineboard/' + wkst + '.html';
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=500,left = " + mwx + ",top = " + mwy + "');");
}

<!-- 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 enuPage() {
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"; 
} 
} 
} 
// -->
<!--
function change(id) {

document.getElementById('dd').className='white';document.getElementById('jl').className='white';document.getElementById('kw').className='white';document.getElementById('ea').className='white';document.getElementById('dm').className='white';document.getElementById('df').className='white';document.getElementById('lb').className='white';document.getElementById('km').className='white';document.getElementById('ac').className='white';

document.getElementById(id).className='highlight';

}
// -->