<!--

function zoom(bild) { 
{
wind = eval('window.open("", "zoom", "scrollbars=0,staus=0,location=0,menubar=0,width=730,height=730");');
if (wind) { wind.focus(); }
var wd = wind.document;
wd.write("<html>");
wd.write("<head>");
wd.write("<title>FG-ELEKTRONIK - SOUNDSYSTEMS</title>");
wd.write("</head>");
wd.write("<body style=\"margin: 5px; Background-Color: #009900\">");
wd.write("<table border=\"0\" bgcolor=\"#FFFFFF\" cellpadding=\"0\" cellspacing=\"0\" width=\"720\" height=\"720\"><tr><td align=\"center\" valign=\"middle\">");
wd.write("<img src=\""+bild+"\" border=\"0\">");
wd.write("</td></tr></table></body>");
wd.write("</html>");
wd.close();
}

}

//-->