function nWin(i, w, h, a) {
  w2=w-20;
  var myWin=window.open("","",'toolbar=no,derictories=no,status=no,scrollbars=no,resizable=no,width='+w2+',height='+h+',menubar=no');
  myWin.document.open();
  myWin.document.write('<html>');
  myWin.document.write('<title>'+a+'</title>');
  myWin.document.write('<body marginwidth=0 marginheight=0 topmargin=0 leftmargin=0>');
  myWin.document.write('<img src='+i+' widht='+w+' height='+h+' alt="'+a+'">');
  myWin.document.write('</body>');
  myWin.document.write('</html>');
  myWin.document.close();
}
function openWindow(url,name,eigenschaften) { 
  window.open(url,name,eigenschaften);
}