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