//Script to resize the window based on w and h parameters
function resizeOuterTo(w,h) {
 if (parseInt(navigator.appVersion)>3) {
   if (navigator.appName=="Netscape") {
    top.outerWidth=w;
    top.outerHeight=h;
   }
   else top.resizeTo(w,h);
 }
}

function gotoMenu() {
	var selected=document.menulist.menucat.options[document.menulist.menucat.selectedIndex].value;
	var url="";
	if (selected=="lun") {
		url="lunch.html";
	} else if (selected=="din") {
		url="dinner.html";
	} else if (selected=="sms") {
		url="makiSushi.html";
	} else if (selected=="csp") {
		url="ChefSpecial.html";
	} else if (selected=="plt") {
		url="partyPlatter.html";
	} else if (selected=="carte")  {
		url="sushi_a_la_carte.html";
	}
	window.location=url;
}