function popup(bild, titel, breite, hoehe)
{
  var nw,nwparams;

  titel = titel + ' (' + breite + 'x' + hoehe + ')';  
    
  nwparams='scrollbars=no,width=' + breite + ',height=' + hoehe + ',screenX=' + (screen.width-breite)/2 + ',screenY=' + (screen.height-hoehe)/2 + ',left=' + (screen.width-breite)/2 + ',top=' + (screen.height-hoehe)/2;
  nw=window.open('','',nwparams);
  nw.document.open();
  
  nw.document.write('<html>\n');
  nw.document.write('<title>\n' + titel + '\n</title>\n');
  nw.document.write('<body onclick="self.close()" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">\n');
  nw.document.write('<img src="' + bild + '" width="' + breite + '" height="' + hoehe + '" title="[click to close]">\n');
  nw.document.write('</body>\n');
  nw.document.write('</html>\n');
  
  nw.document.close();
  nw.focus();
}
