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 / PHISHSITE.JS < prev    next >
Text File  |  2008-01-19  |  742b  |  33 lines

  1. ∩╗┐var sRealPageUrl = RealPageURL();
  2. function RealPageURL()
  3. {
  4.    urlresult = '';
  5.    DocURL=document.location.href;
  6.  
  7.    BeginURL=DocURL.indexOf("#",1) + 1;
  8.    urlresult=DocURL.substring(BeginURL);
  9.    
  10.    if (!isExternalUrlSafeForNavigation(urlresult))
  11.    {
  12.        urlresult = window.document.location.toString();
  13.    }
  14.    
  15.    return urlresult;
  16. }
  17.  
  18. function closePage() {
  19.     window.close();
  20. }
  21.  
  22. function makeReportURL() {
  23.     var sReportURL = 'https://go.microsoft.com/fwlink/?linkid=48016&clcid=0x409&result=block&URL=' + encodeURIComponent(sRealPageUrl);
  24.     window.open(sReportURL);
  25.  
  26. }
  27.  
  28. function BodyLoad()
  29. {
  30.    document.all.overridelink.href = sRealPageUrl;
  31.    document.all.linkdiv.innerText = sRealPageUrl;
  32. }
  33.