 //      
 // Javascript for bookmarking the current page using the page title.
 //
     <!-- 
       // Hide script from older browsers 
       var urlAddress = location.href; 
       var pageName = document.title; 
       function addToFavorites() { 
         if (window.external) { 
            window.external.AddFavorite(urlAddress,pageName) 
         } else { 
            alert("Sorry! Your browser doesn't support this function!"); 
         } 
       } 
      // -->
