Source for JavaScript Demo backbutton.html

<HEAD>
<TITLE>Netprog JavaScript Demos - JavaScript Back Button</TITLE>
</HEAD>

<H2>JavaScript Page Footer</H2>

Everything below the line is generated by JavaScript. The "back" hyperlink
uses the JavaScript document object <CODE>referrer</CODE> property to
determine the page the user came from.<P>

<HR>
<CENTER>
<FONT SIZE=-1 COLOR=PURPLE>
<SCRIPT>
document.write(
  "Document: " + document.location + "<BR>" +
  "Last Modified: " + document.lastModified + "<BR>" +
  "<A HREF=" + document.referrer + ">press here to go back</A>" );

</SCRIPT>
</FONT>
</CENTER>