function PopUpPict(c1,c2,c3,c4) {
  img = c1;
  tit = c2;
  wid = c3;
  hgt = c4;
  conditions = 'toolbar=0,location=0,menubar=0,scrollbars=0,resizable=0,height='+hgt+',width='+wid;
  fenster = open("","",conditions)
  fenster.document.open(); 
  with (fenster) {
    document.write('<html><head><title>' + tit + '<\/title><\/head>');
    document.write('<body onblur="window.close()" leftmargin="0" topmargin="0">');
    document.write('<img src="'+ img +'" width="'+ wid +'" height="'+ hgt +'" border="0" alt="'+ tit +'">');
    document.write('<\/body><\/html>');
  }
  fenster.document.close();
}
