var popUpCallMeNowWin=0;
function popUpCallMeNow(URLStr)
{
  var width=525;
  var height=500;
  var left=screen.width/2-width/2;
  var top=screen.height/3-height/3;
  if(popUpCallMeNowWin)
  {
	if(!popUpCallMeNowWin.closed) popUpCallMeNowWin.close();
  }
  popUpCallMeNowWin = open(URLStr, 'popUpCallMeNowWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function messageWindow(title, msg)
{
  var width="400", height="180";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var msgWindow = window.open("","msgWindow", styleStr);
  var head = '<head><title>'+title+'</title><link rel="stylesheet" href="/default.css" type="text/css"></head>';
  var body = '<center>'+msg+'<br><p><form><input type="button" value="   Sluiten   " onClick="self.close();"></form>';
  msgWindow.document.write(head + body);
  msgWindow.focus();
}
