// 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_infotool(theURL,winName,features)
{
var winl = (screen.width - 620)/2;
var wint = (screen.height - 500)/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=620,height=500');
  meinfenster.focus();
}


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