function agregar()
{
   if (isExplorer())  window.external.AddFavorite("http://www.igerontologico.es","Instituto Gerontológico");   
   else alert("Presione Ctrl+D para agregar este sitio en sus Favoritos"); 
} 

function isExplorer()
{
   if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) return true;
   else if(navigator.appName == "Netscape") return false;   
   else return false;   
}
