// JavaScript Document

function popUp(theURL,winName,features)
{
var winl = (screen.width - 400)/2;
var wint = (screen.height - 360)/2;
meinfenster=
  window.open(theURL,"Fenster",'top='+wint+',left='+winl+',toolbar=no,loction=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=512,height=305');
  meinfenster.focus();
}


function popUp_Besuchsplaner(theURL,winName,features)
{
var winl = (screen.width - 870)/2;
var wint = (screen.height - 750)/2;
meinfenster=
  window.open(theURL,"Besuchsplaner",'top='+wint+',left='+winl+',toolbar=no,loction=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=870,height=750');
  meinfenster.focus();
}
