 function OpenNewWindow(cPicture,nWidth,nHeight)
        {
         NewWindow=window.open("","NeuEins","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=no,resizable=no,top=2,left=2");
         NewWindow.document.write ("<HTML><HEAD>");
         NewWindow.document.write ("<\/HEAD>");
         NewWindow.document.write ("<BODY BGCOLOR='#F4F0DF' topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 rightmargin=0>");
         NewWindow.document.write ("<a href='javascript:self.close()'>");
         NewWindow.document.write ("<IMG SRC=");
         NewWindow.document.write (cPicture);
         NewWindow.document.write (">");
         NewWindow.document.write ("<\/a>");
         NewWindow.document.write ("<\/BODY><\/HTML>");
         NewWindow.focus();
         NewWindow.document.close();
         return false;
        }


  function OpenNewWindowGross(cPicture,nWidth,nHeight)
        {
         NewWindow=window.open("","NeuZwei","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=yes,resizable=yes,top=2,left=2");
         NewWindow.document.write ("<HTML><HEAD>");
         NewWindow.document.write ("<\/HEAD>");
         NewWindow.document.write ("<BODY BGCOLOR='#F4F0DF' topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 rightmargin=0>");
         NewWindow.document.write ("<a href='javascript:self.close()'>");
         NewWindow.document.write ("<IMG SRC=");
         NewWindow.document.write (cPicture);
         NewWindow.document.write (">");
         NewWindow.document.write ("<\/a>");
         NewWindow.document.write ("<\/BODY><\/HTML>");        
         NewWindow.focus();
         NewWindow.document.close();
         return false;
        }