fenster ="";
function checkOpen ()
  {
    if(fenster.closed == false)
      {
        fenster.close();
      }
  }

function oeffnen(bild,flagge)
  {
    //alert(bild);
    if(flagge==1)
      {
        checkOpen();
        fenster = window.open("","Fenster1","left=50,top=50,height=480,width=320,scrollbars=no,resizable=no");
      }
    else
      {
        checkOpen();
        fenster = window.open("","Fenster1","left=50,top=50,height=320,width=480,scrollbars=no,resizable=no");
      }
    fenster.document.open();
    fenster.document.write("<html><head><title>"+bild+"</title></head>");
    fenster.document.write("<body style=\"margin: 0px;\">");
    fenster.document.write("<img src=\"grafix/"+bild+"\" border=\"0\" alt=\""+bild+"\">");
    fenster.document.write("</body></html>");
    fenster.document.close();
  }