
      function popup(w,h,image) {
        x = screen.availWidth/2-w/2;
        y = screen.availHeight/2-h/2;
        var popupWindow = window.open(
            '','','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);
        popupWindow.document.write('<html><body marginwidth="0" marginheight="0" rightmargin="0" leftmargin="0" topmargin="0"><a href="JavaScript:parent.close()"><img src="http://www.fcss.de/fileadmin/templates/FCSS/images/derFCSS/',image,'" border="0" title="Schließen"/></a></body></html>');
      }
