
function addBookmark(title,url) 
{
  if( document.all )
  {
    window.external.AddFavorite( url, title);
  }
  else
  {
    alert("Sorry! Your browser doesn't support this function."); 
  }
}

