// JavaScript Document

function en_campos_ok()
{
		if(document.frm.correo.value=="")
		{
			alert('Fill in your e-mail address, please.');
			this.document.frm.correo.focus();
			return false;
		}
		if(document.frm.pais.value=="")
		{
			alert('Fill in your country, please');
			this.document.frm.pais.focus();
			return false;
		}
		/*if(document.frm.ciudad.value=="")
		{
			if(document.frm.pais.value=='Spain'){
				alert('Fill in your city, please.');
				this.document.frm.ciudad.focus();
				return false;
			}
		}*/
		if(document.frm.centro.value=="")
		{
			alert('Fill in your work center, please.');
			this.document.frm.centro.focus();
			return false;
		}
		if(document.frm.titulacion.value=="")
		{
			alert('Fill in your qualification, please.');
			this.document.frm.titulacion.focus();
			return false;
		}
		
		document.frm.submit();
}

function en_muestra_mensaje(id)
{
		if(id==0)
		{
			alert('Incorrect user.');
			window.history.go(-1);
			this.document.frm.usuario.focus();
			return false;
		}
		if(id==1)
		{
			alert('Incorrect Password.');
			window.history.go(-1);
			this.document.frm.clave.focus();
			return false;
		}

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



	
