//Include this inside the HEAD section
//In the body, where you intend to use it, make it look like this
//<A href="javascript:addBookmark('http://www.ihssoftware.com', 'IHS software') " class=overGreen><B>Add to IE favorites</A>

function addBookmark(sUrl,sTitle,sIcon)
{
   if (navigator.appName && navigator.appName.indexOf("Netscape")>=0)
   {
   }
   else
   {
      if (document.all)
         window.external.AddFavorite(sUrl,sTitle);
            }
}

