//  Hide script from older browsers
// script by http://www.hypergurl.com
 var urlAddress = "http://www.motorcyclebooks.com";
 var pageName = "The Motor Bookstore";

 function addToFavorites()
 {
  var urlAddress = location.href;
  if (window.external)
  {
   window.external.AddFavorite(urlAddress,pageName)
  }
  else
  { 
   alert("Sorry! Your browser doesn't support this function.");
  }
 }
