// JavaScript Document

function agendar_favoritos(url, titulo) {
	if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
		window.external.AddFavorite(url, titulo);
	} else {
		if (navigator.appName == "Netscape") {
			alert("Presione Crtl+D para agregar este sitio en sus Marcadores");
		}
	}
	return true;
}