  window.defaultSatus="";
  function picWindow(ImgName) {
  var win = window.open("", "Grossbild", "width=346,height=356,scrollbars=no");
  var sheet = "<link rel=stylesheet type='text/css' href='../wd.css'>\n";
  var intro = "<html>\n<head>\n<title>Big Pic</title>\n"+sheet+"</head>\n<body bgcolor='#996633'>\n<table border=0 cellpadding=0 cellspacing=0 width='100%' height='100%'><tr><td align=center>\n";
  var extro = "</td></tr></table>\n</body>\n</html>";
  win.document.write(intro);
  win.document.write("<img width=326 height=316 border=0 alt='' src='"+ImgName+"'>\n</td></tr>");
  win.document.write("<tr><td align=center><a href='javascript:close()'>close window</a></td></tr>\n");
  win.document.write(extro);
  win.document.close(); 
  }