
function MasInfoCrusos(url){
	var w = 800;
	var h = 600;
	var php =url;
	var nombre="popwindow";	
	nueva_ventana= open(php, nombre, "width="+w+",height="+h+",status=yes,titlebar=yes,toolbar=no,left=100,top=10,menubar=no,scrollbars=yes,resizable=no");
	nueva_ventana.resizeTo(w, h);
	
}


function abrirNoticia(id){
	var w = 700;
	var h = 600;
	var php ="ampliar_noticia.php?ID="+id;
	var nombre="popwindow";	
	nueva_ventana= open(php, nombre, "width="+w+",height="+h+",status=yes,titlebar=yes,toolbar=no,left=100,top=10,menubar=no,scrollbars=yes,resizable=no");
	nueva_ventana.resizeTo(w, h);
	
}

function imprimir_solucion(id,op){
	var w = 600;
	var h = 800;
	var php ="imprimir_solucion.php?ID="+id+"&OP="+op;
	var nombre="popwindow";	
	nueva_ventana= open(php, nombre, "width="+w+",height="+h+",status=yes,titlebar=yes,toolbar=no,left=100,top=10,menubar=no,scrollbars=yes,resizable=no");
	nueva_ventana.resizeTo(w, h);
	
}

var resultado;
resultado = '';

function valida_test(){

	for (var i=0; i<document.test.RESPUESTA.length; i++){
		if (document.test.RESPUESTA[i].checked){			
			return true;
		}
	}
	alert('Tienes que seleccionar una respuesta para pasar a la siguiente pregunta');
	return false;
}

function siguiente_test(){
	if (valida_test()){
		document.test.OPERACION.value=1;	
		document.test.submit();
	}
	
}
function CheckEmail() {
	email = document.test.email.value;
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email)){
		return true;
	} else {
	
		return false;
	}
}
function validar_datos_test(){
	var ok=true;

	if(document.test.nombre.value==""){
		alert("Por favor, introduce tu nombre");
		document.test.nombre.focus();
		return false;
		
	}
	
	if(document.test.email.value==""){
		alert("Por favor, introduce tu dirección de email");
		document.test.email.focus();
		return false;
	}
	if(!CheckEmail()){
		alert("Por favor, introduce una dirección de email válida");
		document.test.email.focus();
		return false;
	}
	if (document.test.email.value!=document.test.email_confirm.value){
		alert("El email debe coincidir con el email de confirmación.");
		document.test.email.focus();
		return false;
	}


return ok;			
}
function envia_email_resultados(){
	if(validar_datos_test()){
		document.test.OPERACION.value=1;
		document.test.submit();
	}
}

function busqueda_resultados(){
	document.busqueda.OP.value = 1;
	document.busqueda.submit();	
}

function ver_personal(){
	var w = 650;
	var h = 480;
	var php ="personal.php";
	var nombre="popwindow";	
	nueva_ventana= open(php, nombre, "width="+w+",height="+h+",status=yes,titlebar=yes,toolbar=no,left=100,top=10,menubar=no,scrollbars=yes,resizable=no");
	nueva_ventana.resizeTo(w, h);
	
}

function login(){
	document.descarga.OP.value = 1;
	document.descarga.submit();	
}

function logout(){
	document.descarga.OP.value = 4;
	document.descarga.submit();	
}