function fncFindBookmark() {

// ray 07-2005:
// parse the uri

var this_uri = window.location.href;
   var this_bookmark=window.location.search;
   this_uri = this_uri.substring(0,this_uri.indexOf('?') - 1);
   alert ('bookmark found = ' + this_bookmark);
alert('this uri = ' + this_uri);
  if (this_bookmark != "")
  {
  // send them to that internal anchor:
this_uri=this_uri + '#' + this_bookmark.substring(1,this_uri.search.length);

window.location.href = this.uri;
alert(' window.location.href = ' + window.location.href);
 document.URL = window.location;
alert(' doc url = ' + document.URL);
  }

}

