function addToFavorites()
{
   if ( navigator.appName != 'Microsoft Internet Explorer' ) {
      window.sidebar.addPanel(document.title, document.URL, "");
   }
   else if (window.external) {
      window.external.AddFavorite(document.URL, document.title);
   }
}

