This simple little javascript shows what page the viewer was at before he came here. This is a convenient script to have if you move your page and need to tell people to notify the owner of the previous site where you were linked. Also, this is used often in trackers now-a-days to dispaly where a site's viewers came from. You, in turn, could have this javascript set up to e-mail you the referrer information if you only get 10 or so hits/day on your page.
The source..


<script language="Javascript">
<!-- 
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

if (document.referrer&&document.referrer!="")
  document.write('Thanks for visiting this site from '+document.referrer+'<BR>');

//-->
</script>

Nic's JavaScript Page