
function mailme( name, server, suffix )
   {
   self.location = "mailto:" + name + "&#64;" + server + ".nl" ;
   }


function popupWindow ( name )
{
  var objWindow;
  var windowStr;
  var width=600, height=600;
  var xMax = 800, yMax=600; // default

  if (document.all)
    xMax = screen.width, yMax = screen.height;
  else if (document.layers||document.getElementById)
    xMax = window.outerWidth, yMax = window.outerHeight;

  xpos =  (xMax-width)/2;
  ypos =  (yMax-height)/2;

  objWindow = window.open('',windowStr,'resizable=yes,scrollbars=yes,status=no,top='+ypos+',screenY='+ypos+',left='+xpos+',screenX='+xpos+',width='+width+',height='+height);
  objWindow.location.href = name ;
  objWindow.focus();
}
