function htmlPopUp(f, width, height, name, scrollbars)
{
	var iTop  = (screen.height - height) / 2 ;
	var iLeft = (screen.width  - width) / 2 ;

	if (name == null || name == '') {
	    name = "enlarged";
	}
	if (scrollbars == null || scrollbars == '') {
	    scrollbars = "no";
	}

	var sOptions = "toolbar=no";
	sOptions += ",width=" + width;
	sOptions += ",height=" + height;
	sOptions += ",resizable=no";
	sOptions += ",scrollbars=" + scrollbars;
	sOptions += ",left=" + iLeft ;
	sOptions += ",top=" + iTop ;

	var oMyWindow2 = window.open(f, name, sOptions)
	oMyWindow2.focus();
}

function speiseplan()
{
	htmlPopUp("/mittagsbuffet/", 959,649,"Mittagsbuffet", "no");
}


function speiseplanAlt(city)
{
	if (city == null || city == '') city = "C";
	htmlPopUp("speiseplan.php?city="+city, 365,650,"Speiseplan", "no");
}
function reservierung()
{
	htmlPopUp("/reservierung/", 409,500,"EchtzeitReservierung", "no");
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function showSlideShow(dir)
{
	var winW = 900, winH = 630;
	var iTop  = (screen.height - winH) / 2 ;
	var iLeft = (screen.width  - winW) / 2 ;
	var sOptions = "toolbar=no";
	sOptions += ",width=" + (winW);
	sOptions += ",height=" + (winH) ;
	sOptions += ",resizable=no";
	sOptions += ",scrollbars=" + "no";
	sOptions += ",left=" + iLeft ;
	sOptions += ",top=" + iTop ;
	var oMyWindow = window.open("gallery/slideshow.php?dir="+escape(dir), "Slideshow", sOptions)
	oMyWindow.focus();
}

function jobs()
{
	htmlPopUp("/jobs/jobs.html", 540,540,"Mitarbeiter", "no");
}
