<!--
function PopUpFenster(url,framename,width,height,xpos,ypos)
  {
  if ( navigator.appName == "Netscape" )
    {
    width = width + 0;
    height = height + 0;
    var attributes =  "menubar=0,toolbar=0,status=0,scrollbars=0,resizable=0,WIDTH=" + width + ",HEIGHT=" + height + ",screenX=" + xpos + ",screenY=" + ypos;
    var showpic = window.open(url,framename, attributes);
    }
  else
    {
    width = width + 0;
    height = height + 0
    var attributes = "menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,WIDTH=" + width + ",HEIGHT=" + height + ",screenX=" + xpos + ",screenY=" + ypos;
    var showpic = window.open(url,framename, attributes);
    }
  }
//-->