/* 
Purpose: Pass bookmark data on to forwarded page
Created: 3/10/2007
Author: John Robert Shea
*/

// Get Boookmark if one exists
address = window.location;
text = address.toString();
q = text.indexOf('?'); // Questionmark marker for bookmark
len = text.length;

Bookmark = '';

if (q > 0) {
  Bookmark = '?' + text.substring(q + 1, len);
}

URL = 'http://www.tsmj.org/library/bible_comment/' + Bookmark
window.location.replace(URL);

