//bookmark script
 var urltoBookmark = document.location;
 var pageNameToBookmark = document.title;

 function addToFavorites()
 {
  if (window.external)
  {
   window.external.AddFavorite(urltoBookmark,pageNameToBookmark)
  }
  else
  { 
   alert("Whoops, this javascript helper doesn't work with your browser!\n\nPlease use keyboard shortcuts to add a bookmark to this page:\nCTRL + D (Windows) or Command + D (Macintosh)");
  }
 }

