BACK button
<a href="#" onClick="history.go(-1)">Back</a>
or a button
<input type=button value="Back" onClick="history.go(-1)">
<!-- Change the value of -1 to any number of pages you would like to send your visitors back -->
HTML Help Home