function chequeo_login() {
	if (document.login.rol.value < 0 || document.login.usuario.value == "" || document.login.clave.value == "") {
		alert('Por favor, rellene todos los campos');
		return false;
	}
	return true;
}

function chequeo_tutoria() {
	if (document.tutoria.profesor.value < 0) {
		alert('Por favor, seleccione el profesor al que solicita la tutoría');
		return false;
	}
	return true;
}

function chequeo_contacto() {
	if (document.contactar.email.value == "" || document.contactar.nombre.value == "" || document.contactar.mensaje.value == "" || document.contactar.captcha.value == "") {
		alert('Por favor, rellene los campos obligatorios');
		return false;
	}
	return true;
}

function chequeo_enviar() {
	if (document.enviardoc.nombre.value == "" || document.enviardoc.email.value == "" || document.enviardoc.captcha.value == "") {
		alert('Por favor, rellene los campos obligatorios');
		return false;
	}
	return true;
}

function carga_asignaturas(direccion) {
	var qcurso = document.formulario.curso.value;
	if (qcurso > 0) {
		document.location = direccion + qcurso + '/';
	}
}

function carga_tareas(direccion) {
	var qasignatura = document.formulario.asignatura.value;
	if (qasignatura > 0) {
		document.location = direccion + qasignatura + '/';
	}
}

function muestra_formulario_tarea() {
	if (document.getElementById('nuevatarea').style.height == "0px") {
		document.getElementById('nuevatarea').style.height = "450px";
	} else {
		document.getElementById('nuevatarea').style.height = "0px";
	}
	// alert('muestra el formulario de la tarea');
}

function chequeo_nueva_tarea() {
	// if (document.tarea.titulo.value == "" || document.tarea.descripcion.value == "") {
	if (document.tarea.titulo.value == "") {
		alert('Por favor, indique un título para la tarea');
		return false;
	}
	return true;
}

function muestra_formulario_fichero() {
	if (document.getElementById('nuevofichero').style.height == "0px") {
		document.getElementById('nuevofichero').style.height = "140px";
	} else {
		document.getElementById('nuevofichero').style.height = "0px";
	}
	// alert('muestra el formulario del fichero');
}

function chequeo_nuevo_fichero() {
	// if (document.fichero.nombre.value == "" || document.fichero.fichero.value == "") {
	if (document.fichero.nombre.value == "") {
		alert('Por favor, indique el nombre del fichero');
		return false;
	}
	return true;
}

function chequeo_contacto() {
	if (document.contactar.email.value == "" || document.contactar.nombre.value == "" || document.contactar.mensaje.value == "" || document.contactar.captcha.value == "") {
		alert('Por favor, rellene los campos obligatorios');
		return false;
	}
	return true;
}
