function Oeffne(bname,h,b,ref)
{


  var X=0, Y=0;
  if (!document.layers && !document.all) { ModX=20;ModY=30; }
  var Param = 'width='+(parseInt(b)+X)+',height='+(parseInt(h)+Y+25)+',directories=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0';
  if (document.layers)
    Param += ',screenX='+(screen.width/2-b/2)+',screenY='+(screen.height/2-h/2);
  else if (document.all)
    Param += ',left='+(screen.width/2-b/2)+',top='+(screen.height/2-h/2);

  var neuwin = window.open('', '_blank', Param);

  with (neuwin.document)
  {
    open();
    write('<html>\n<head>\n<title>Bilder von PRT von Sassenheim: '+ref+'</title>\n<link rel="stylesheet" href="sassenheim1.css" type="text/css">\n</head>\n');
    write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor=#FFFFFF link=#FF0000 vlink=#FF0000>\n');
    write('  <img src='+bname+' width='+b+' height='+h+' alt="">\n');
    write('<center><a href="javascript:window.close()" ><B>Fenster schliessen</B></a></center></body>\n</html>\n');
    close();
  }


}
