home *** CD-ROM | disk | FTP | other *** search
/ World Book 2003 / WB03D2SE.iso / info_dat / SurfTheAges / popup.js < prev    next >
Text File  |  2002-06-19  |  521b  |  24 lines

  1. var d = document;
  2. function popupWin(url, winName, features)
  3. {
  4.   if (features == null || features == '')
  5.   {
  6.     features = 'width=600,height=400,resizable=yes,scrollbars=yes,menubar=yes';
  7.   }
  8.   if (winName == null || winName == '')
  9.   {
  10.     winName = 'wbolPopupWin';
  11.   }
  12.   var wnd = open (url, winName, features);
  13.   wnd.focus ();
  14. }
  15. function popupHelp(fs)
  16. {
  17.   f = 'width=320,height=240,scrollbars=yes,resizable=yes';
  18.   n = 'wbolHelpWin';
  19.   var wnd = window.open(fs,n,f);
  20.   if (wnd) wnd.focus ();
  21. }
  22.  
  23.  
  24.