home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 2 / Windows / System32 / ieframe.dll / HTML / POLICY.JS < prev    next >
Text File  |  2008-01-19  |  302b  |  16 lines

  1. ∩╗┐function printSite(site)
  2. {
  3.    siteContainer.innerText = site;
  4. }
  5.  
  6. function BodyOnKeyPress(nCode)
  7.    if (nCode == 27)    //ESC
  8.    {
  9.       //this return value means that the Cancel button was clicked
  10.       window.returnValue = 0;
  11.  
  12.       //close the dialog
  13.       window.close();
  14.    }
  15. }