<!--
/*
JavaScript Bookmark*/
function bookmarkSite()
    {
      if (document.all) file://IE
        {window.external.addFavorite(window.location.href, "Dogs of Westchester County");}
      else
        {alert("To be used with IE only. \n In " + navigator.appName + "use CTRL + D to bookmark.");}
    }
    if(document.all) file://IE
        { document.write('<a href="#" onClick="bookmarkSite()">Bookmark this site</a>'); }


