function suscribir() {
	var email = document.boletin.email.value;
	if(!validarEmail(email)) {
		 alert("La dirección de email es incorrecta.");
		return false;
	}
	else {
	var url = "http://www.galenuspro.com/boletin/boletin.php?email="+email;
	myleft=(screen.width)?(screen.width-250)/2:100;
	mytop=(screen.height)?(screen.height-150)/2:100;
	properties = "width=300,height=200, top="+mytop+",left="+myleft;
	aa = window.open(url,'boletin',properties);
	if (!aa) alert ("Debe desbloquear su sistema de bloqueos de ventanas\n para realizar su suscripción")
	}
}
 function validarEmail(valor) {
  if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(valor)){
    return true;
  } else {
    return false;
  }
}
function sobre(src,color_entrada) {
src.bgColor=color_entrada;
src.style.cursor="hand";
}

function fuera(src,color_default) {
src.bgColor=color_default;
src.style.cursor="default";
}