<!-- Paste this snippet into your code -->
<script type="text/javascript">
<!--
/* This script and many more are available free online at
The JavaScript Source ::
http://javascript.internet.comCreated by: Chris Stimpert ::
http://ilovethecode.com/ */
function refer() {
if (!document.referrer) {
document.write("No referrer, pal.")
}
else {
document.write(document.referrer);
}
}
//-->
</script>
<!-- Paste this code into the BODY section of your HTML document -->
<script type="text/javascript">
refer();
</script>