 function AddToFavorites(urlAddress,pageName)
 {
  if (window.external)
  {
   window.external.AddFavorite(urlAddress,pageName)
  }
  else
  { 
   alert("Sorry! Your browser doesn't support this function.From Netscape, pull-down the 'Bookmarks' menu, select 'Add Bookmark' or from Internet Explorer pull-down the 'Favorites' menu, select 'Add to Favorites'");
  }
 }


