home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2000 October / tst.iso / tutorials / javascript / DATA / MODULES / WOPEN.JS < prev   
Encoding:
Text File  |  1998-08-30  |  163 b   |  5 lines

  1. function wOpen(url, width, height) {
  2.    var featureList='scrollbars=yes,width=' + width + 'height=' + height;
  3.    window.open(url, 'exampleWindow', featureList);
  4. }
  5.