
function showpic(picname,picw,pich)
{
  var win = window.open("","viewpic","width="+picw+",height="+pich+",status=no,toolbar=no,menubar=no");
  win.document.open();
  win.document.write("<html><head><title>Herbertsm&uuml;hle</title>");
  win.document.write("</head><body>");
  win.document.write('<div style="position:absolute;width:'+picw+'px;height:'+pich+'px;left:0px;top:0px">');
  win.document.write("<img src="+picname+"></div></body></html>");
  win.document.close();
}
