function popupWindow(url, name, w, h, x, y) {
 if (!w) w = 450;
 if (!h) h = 280;
 if (!x) x = 150;
 if (!y) y = 150;

  winprops = 'toolbar=no,location=no,' +
    'directories=no,status=yes,menubar=no,scrollbars=yes,' +
    'resizable=no,copyhistory=no,width='+w+',height='+h+',' +
    'screenX='+x+',screenY='+y+',top='+x+',left='+y
  win = window.open(url, name, winprops)
 if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}