home *** CD-ROM | disk | FTP | other *** search
/ Mundo do CD-ROM 118 / cdrom118.iso / internet / webaroo / WebarooSetup.exe / Webaroo.msi / _4B63AD54D6FA474D9F0B0892E023E5FE < prev    next >
Encoding:
Text File  |  2006-03-10  |  785 b   |  24 lines

  1. function LoadAboutPage()
  2. {
  3.     MM_preloadImages('/webaroo/e29f1fe6/images/webaroo_search_f2.gif','/webaroo/e29f1fe6/images/webaroo_contents_f2.gif','/webaroo/e29f1fe6/images/webaroo_prefs_f2.gif','/webaroo/e29f1fe6/images/webaroo_help_f2.gif');
  4.     // following lines for rounded corners script
  5.     if(!NiftyCheck())
  6.             return;
  7.     Rounded("div#credits","all","#FFAA44","#FFFFFF","smooth");
  8.     // initialize the DHTML History framework
  9.     dhtmlHistory.initialize();   
  10.     // add ourselves as a DHTML History listener
  11.     dhtmlHistory.addListener(GetAboutPage);
  12. }
  13.  
  14. function GetAboutPage(newLocation, historyData) 
  15. {
  16.     var currentLocation = window.location.href.split("#");
  17.     if (currentLocation[0].indexOf("/credits") == -1)
  18.     {
  19.         return;
  20.     }
  21.     document.title = 'Webaroo - Credits';
  22. }
  23.  
  24.