
var width,height;
var image,ext;
var cond1,cond2,scroll;
function infopic(image,width,height) {
        if (width==0) cond1=" ";
                else cond1="width="+(width+20)+"";
        if (height==0) {cond2=" "; scroll="yes";}
                else {cond2="height="+(height+30)+""; scroll="no";}

        var s1 ="<head><TITLE>Kling Malz Produktionsbetriebe</TITLE></head>";
        var s16="<body onBlur='self.close()' onClick='self.close()'>";
        var s15="";
        var s2 ="<CENTER><IMG SRC='"+image+"' BORDER=0>";
  //      var s3 ="<FORM><INPUT TYPE='BUTTON' VALUE='Close Window' onClick='self.close()'>";
  //      var s4 ="</FORM></CENTER></BODY>";
        var s17="</body>";

        ImageWindow=window.open("", "newwin"+width,"toolbar=no,scrollbars="+scroll+",menubar=no,"+cond1+","+cond2+",top=0,left=0");
        ImageWindow.document.write(s1+s16+s15+s2+s17);
        ImageWindow.document.close();
}

