<!--
function openWindow(url) {
  popupWin = window.open(url, 'MitgliederInfo', 'menubar=0,toolbar=0,location=0,directories=0,status=0,scrollbars=yes,resizable=0,dependent,width=600,height=350,left=50,top=50');
}

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

-->