home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2002 November / MICD_2002_11.iso / Www / HalfLife / resub.halflife.pl / dcx / popupdcx.js < prev   
Text File  |  2002-09-03  |  350b  |  14 lines

  1. function popupDCX( href ) {
  2.  
  3.   wWidth  = 635;
  4.   wHeight = 440;
  5.   wTop    = (screen.availHeight - wHeight)/2;
  6.   wLeft   = (screen.availWidth - wWidth)/2;
  7.  
  8.   window.open( href,
  9.   '','toolbar=no,scrollbars=yes,resizable=no,status=yes,location=no,'+
  10.   'directories=no,width='+wWidth+',height='+wHeight+',menubar=no,left='+wLeft+
  11.   ',top='+wTop);
  12.  
  13. }
  14.