function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}



// JavaScript Document

function MitteFenster(dateiname,b,h)
{
	var eigenschaft,sbreite,shoehe,fenster;
	sbreite = screen.width;
	shoehe = screen.height;
	x = (sbreite-b)/2;
	y = (shoehe-h)/2;
	eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h+",menubar=no,toolbar=no,scrollbars=yes,resizable=no";
	fenster=window.open(dateiname,"Titel",eigenschaften);
	fenster.focus();
}
