function addToFavorites(anchor)
{
    if (window.sidebar)
   {
   window.sidebar.addPanel(anchor.getAttribute('title'), anchor.getAttribute('href'),"");
   }
   else if (document.all)
    {
    window.external.AddFavorite(anchor.getAttribute('href'), anchor.getAttribute('title'));
    }
    else
        {
   return true;
   }
} 