/*
  Dynamic Code to accompany CS4173 dual presention redux example (based on an example by David Kolb)

  June 2005

  ECMAScript / JScript

  File: goback.js

  See also: shrink.js file
*/
document.writeln ('<div id="DivBack" class="navbox">');
document.writeln (' <p id="ParBack">');
document.writeln (' <a ');
document.writeln (' onclick="javascript:history.back(); return false"');
document.writeln (' onkeypress="javascript:history.back(); return false"');
document.writeln (' >Return to<br />previous</a>');
document.writeln (' </p>');
document.writeln ('</div>');
/* End of File */