////////////////////////////////////////////////////////////////
//
// Beschreibung: Oeffnet ein Popup-Fenster vom Belegungsplan
//
////////////////////////////////////////////////////////////////

function startBelegung(url){
  var winb = window.open (url, "winBelegung","scrollbars=yes,resizable=yes,menubar=no,location=no,width=650,height=350");
  var x = (screen.width-700)/2;
  winb.moveTo(x,20);
  winb.focus();
}