
<!-- 

function showImage(src,x,y) {
  
  f1=window.open("","Vorschaubild","width=1,height=1");
  f1.close();
  remoteprint = window.open(src,"Grossansicht","width="+x+",height="+y+",scrollbars=1,resizable=yes");
  if (remoteprint != null && navigator.appName == 'Netscape' && navigator.appVersion.charAt(0) > '2') {
    remoteprint.focus();
  }
}
-->             