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 / ANCHBRWS.JS < prev    next >
Text File  |  2008-01-19  |  363b  |  16 lines

  1. ∩╗┐function BodyLoad()
  2. {
  3.     var arrAll = document.all;
  4.     for (i=0; i < arrAll.length; i++)
  5.     {
  6.         var elm = arrAll[i];
  7.         if (elm.id.substring(0,1) == "_")
  8.         {
  9.             if (elm.innerText== "undefined" || elm.innerText == "")
  10.             {
  11.                 elm.innerText = L_NotAvailable_Text;
  12.             }
  13.         }
  14.     }
  15. }
  16.