home *** CD-ROM | disk | FTP | other *** search
/ 24.172.56.42 / 24.172.56.42.tar / 24.172.56.42 / art.categories.php_files / popup.js < prev    next >
Text File  |  2006-01-16  |  310b  |  9 lines

  1. var win = null;
  2. function PopupWindow(url, name, w, h){
  3.     var l = (screen.width - w) / 2;
  4.     var t = (screen.height - h) / 2;
  5.     win = window.open(url, name, 'height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=yes,resizable=yes');
  6.     if (parseInt(navigator.appVersion) >= 4) { 
  7.         win.window.focus();
  8.     }
  9. }