/*
 * Añade la página "objeto" a los Favoritos del Explorer
 * Ejemplo: <A CLASS="humor" HREF="javascript:favorito(this)">Añadir documento a Favoritos</A>
 */
function favorito(objeto){
	var txtNoExplorer="Esta función sólo es compatible con Internet Explorer.\nPuede agregar la página usted mismo mediante el menú \"Marcadores\" o \"Bookmarks\" de su navegador.";
	
	if(typeof(objeto.external)!="undefined"){ // addFavorite() está probablemente soportado
		var url=objeto.location.href;
		var titulo=objeto.document.title;
		objeto.external.AddFavorite(url, titulo);
	}else alert(txtNoExplorer); // adFavorite() no está soportado
}
