// JavaScript Document

function campos_ok()
{
		if(document.frm.correo.value=="")
		{
			alert('No ha rellenado el correo electrónico.');
			this.document.frm.correo.focus();
			return false;
		}
		if(document.frm.pais.value=="")
		{
			alert('No ha seleccionado el país');
			this.document.frm.pais.focus();
			return false;
		}
		if(document.frm.ciudad.value=="")
		{
			if(document.frm.pais.value=='España'){
				alert('No ha seleccionado la ciudad');
				this.document.frm.ciudad.focus();
				return false;
			}
		}
		if(document.frm.centro.value=="")
		{
			alert('No ha rellenado el Centro de trabajo');
			this.document.frm.centro.focus();
			return false;
		}
		if(document.frm.titulacion.value=="")
		{
			alert('No ha rellenado su titulación');
			this.document.frm.titulacion.focus();
			return false;
		}
		
		document.frm.submit();
}

function muestra_mensaje(id)
{
		if(id==0)
		{
			alert('El usuario no es correcto');
			window.history.go(-1);
			this.document.frm.usuario.focus();
			return false;
		}
		if(id==1)
		{
			alert('La clave no es correcta');
			window.history.go(-1);
			this.document.frm.clave.focus();
			return false;
		}

		document.fEntrada.submit(); //aki iria el download...
}



	