function addToFavorites() {

var BookmarkURL="http://www.fchaffin.co.uk"
var BookmarkTitle="F Chaffin Ltd, Garden Manufacturer and Retailer "

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