function bookmark() {
      var BookmarkURL="http:/www.theorchardslivery.co.uk"
      var BookmarkTitle="The Orchards Livery - Worcestershire Livery & Schooling Yard"

      // If the browser is Internet Explorer
      if (document.all)
      {
              // Add to Favorites (Internet Explorer)
              window.external.AddFavorite(BookmarkURL,BookmarkTitle)
      }
       else
       {
              // Add to Bookmarks (Mozilla Firefox)
              window.sidebar.addPanel(BookmarkTitle, BookmarkURL, '');
        }

}

