// Copyright 2001 Idocs.com // Distribute this script freely, but keep this notice in place // backlink object initializer function backlink() { this.text = 'Go Back'; this.type = 'link'; this.write = backlink_write; this.form = true; } // write method function backlink_write() { if (! window.history) return; if (window.history.length == 0)return; this.type = this.type.toLowerCase(); if (this.type == 'button') { if (this.form) document.write('
'); document.write(''); if (this.form)document.write('<\/FORM>'); } else { document.write(''); if (this.type == 'image' || this.type == 'img') { document.write('', this.text, ''); } else document.write(this.text); document.write('<\/A>'); } }