function CreateBookmarkLink() {
	var titulo = "Danien.com - Soluciones para caída de cabello y alopecia.";
	var url = "http://www.danien.com/";
	if(window.sidebar) { // Mozilla Firefox
		window.sidebar.addPanel(titulo, url, "");
	} else if( window.external ) { // IE, Opera
		window.external.AddFavorite(url, titulo);
	}
}

function suscribeNewsletter(email, error) {
	new Ajax.Request(pathraiz + 'ajax/newsletter.php?path=' + pathraiz + '&seccion=newsletter', {
		parameters : {
			email: email
		},
		onCreate: function() {
			window.location.href = '#top';
			$("subnews").disable();
		},
		onSuccess : function(resp) {
			$("subnews").enable();
			Element.update("mensajes", resp.responseText);
			$("principal").setStyle({
				display: "none"
			});
			Effect.BlindDown("mensajes");
		}
	});
	return false;
}

function restorePrincipal() {
	$("mensajes").setStyle({
		display: "none"
	});
	$("principal").setStyle({
		display: "block"
	});
}
