function fncFindBookmark {
// ray 07-2005:
// parse the uri
  {
  var this_uri=window.location.href;
  var this_bookmark=this_uri.split("?");
  if (this_bookmark[1] != "")
  // send them to that internal anchor:
     var page_bookmark = "#" + this_bookmark
   document.URL =  page_bookmark;
  }

}
