home *** CD-ROM | disk | FTP | other *** search
/ PC Open 43 / pcopen43.iso / Internet / RCedit / RCEdit.msi / Instal01.cab / _6E6B16E92FCD11D4A98C00104B9A8B22 < prev    next >
Encoding:
Text File  |  1998-06-05  |  185 b   |  9 lines

  1. // Show reffering URL, if any
  2.  
  3.     function getref() {
  4.     if (document.referrer == "")
  5.         {document.write("Information not available")}
  6.     else
  7.         {document.write(document.referrer)}
  8.     }
  9.