function abrir_temario(pagina){
	var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=500, height=500";
	window.open(pagina,"",opciones);
}
function abrir_mapa(pagina){
	var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=413, height=482";
	window.open(pagina,"",opciones);
}
/*function enviar(formuu){
	error = 0;
	formulario = document.getElementById(formuu);
	legal = document.getElementById("legal");
	nombre = document.getElementById('nombre');
	apellidos = document.getElementById('apellidos');
	c_postal = document.getElementById('c-postal');
	edad = document.getElementById('edad');
	nacionalidad = document.getElementById('nacionalidad');
	telefono = document.getElementById('telefono');
	como = document.getElementById('como');
	if(nombre.value == "" || apellidos.value == "" || c_postal.value == "" || edad.value == "" || nacionalidad.value == "" || telefono.value == "" || como.value == ""){
		error=1;
		alerta = "Tienes que rellenar todos los campos\n";
	}
	if(legal.checked == false){
		error=1;
		alerta += "Tienes que aceptar la Política de Protección de Datos de Carácter Personal";
	}
	if(error){
		window.alert(alerta);
		alerta = "";
	}else{
		formulario.submit();
	}
}*/
function mas_curso(){
	document.getElementById('form_mas_curso').submit();
}