   <!--
var active_content=0;
var rollover=0;

function zoom (picture,subtitle,width,height)
                {
                                var zoom_nr=0;

                                loca = "" + document.location;
                                last = loca.lastIndexOf("/");
                                if (last<0)
                                                last = loca.lastIndexOf("\\");
                                loca = loca.substring(0,last+1);

                                var features="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+width+",height="+height+"";
                                                                                                

                                zoomwindow = window.open("","_blank",features);
                                if (rollover && (navigator.appName.indexOf("Netscape")>=0)) zoomwindow.focus();

                                zoomwindow.document.write("<HEAD><BASE HREF=\""+loca+"\"><TITLE>Zoom</TITLE></HEAD>");
                                zoomwindow.document.write("<BODY BGCOLOR=\"#000\">");
                                zoomwindow.document.write("<A HREF=\"javascript:window.close();\"><IMG SRC=\""+loca+picture+"\" BORDER=\"0\" alt=\"Fenster&nbsp;schliessen\"></A>");
                                zoomwindow.document.write("</BODY>");
                                zoomwindow.document.close();
}
//-->
