// JavaScript Document
////////////////////////////////////////////
///////////////////////////////////////////////////
// Muestra u oculta elementos de la página
// id=Id del elemento a mostrar/ocultar

function Mostrar_Capa(id) {
	document.getElementById(id).style.display = (document.getElementById(id).style.display=="block") ?  "none" : "block";
}

function siguiente() {
	if(document.getElementById('descripcion1').style.display=="block") {
		document.getElementById('descripcion1').style.display="none";
		document.getElementById('descripcion2').style.display="block";
	}
	else if(document.getElementById('descripcion1').style.display=="none") {
		document.getElementById('descripcion1').style.display="block";
		document.getElementById('descripcion2').style.display="none";
	}
}

function chequear_datos_curriculum(which) {

        elemento = document.getElementById(which);

        if(elemento.nombre.value==""){ alert("Debe indicar el nombre."); return false; }
        if(elemento.apellidos.value==""){ alert("Debe indicar los apellidos."); return false; }

	if(elemento.email.value==""){ alert("Debe indicar el e-mail."); return false; }

	patron=/^(\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+)*$/;

	if (!patron.test(elemento.email.value)) { alert("El formato del e-mail no es correcto."); return false;}

        if(elemento.acuerdo.checked==false){ alert("Debe aceptar las condiones de uso."); return false; }
        
	return true;
}