<!--

function zoom(bild) { 
{
wind = eval('window.open("", "zoom", "scrollbars=0,staus=0,location=0,menubar=0,width=670,height=730");');
if (wind) { wind.focus(); }
var wd = wind.document;
wd.write("<html>");
wd.write("<head>");
wd.write("<title>Messebau Trisign - Fotogalerie</title>");
wd.write("</head>");
wd.write("<body style=\"margin: 0px; padding: 0px; Background-Color: #FFFFFF\">");
wd.write("<table border=\"0\" bgcolor=\"#FFFFFF\" cellpadding=\"0\" cellspacing=\"0\" width=\"670\" height=\"710\"><tr><td align=\"center\" valign=\"middle\">");
wd.write("<img src=\""+bild+"\" style=\"border: 1px solid #0F8CB9\">");
wd.write("<br><br><input type=\"button\" style=\"width: 100px; color: #0F8CB9; font-size: 11px; background-color: white;\" value=\"Fenster schließen\" onclick=\"javascript:self.close()\">");
wd.write("</td></tr></table></body>");
wd.write("</html>");
wd.close();
}

}

//-->