function fenster500(name, url) {

  remoteprint = window.open(url, name, 'width=500,height=400,resizable=1,scrollbars=1,toolbar=1');

  if (remoteprint != null && navigator.appName == 'Netscape' && navigator.appVersion.charAt(0) > '2') {

    remoteprint.focus();

  }

}