// Script para agragar a Favoritos
function AgregarFavoritos(){
	var title=String(document.title);
	var url=String(window.location);
	// según el navegador
	if (window.sidebar) // FF
		window.sidebar.addPanel(title, url, "");
	else if(window.opera && window.print){ // OPERA
		var elem = document.createElement('a');
		elem.setAttribute('href',href);
		elem.setAttribute('title',title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all) // IE
		window.external.AddFavorite(url, title);
	else {// otros web Browsers
		// alert ("Presione Crtl+D para agregar a este sitio en sus Bookmarks");  
	}
}

