// JavaScript Document

function valida_login_cand(tipo)
{

	if(tipo == 'cpf')
	{
		
		if(trim(document.getElementById('cpf').value)=='')
			{
				alert("O CPF deve ser Preenchido!");
				document.getElementById(tipo).focus();
				return false;
			}
		else
			{
				if(!valida_cpf(document.getElementById('cpf').value))
					{
						alert("CPF inválido!");
						document.getElementById(tipo).focus();
						return false;
					}
			}
	}
	else if(tipo == 'email')
	{
			
		if(trim(document.getElementById('email').value)=='')
			{
				alert("O Email deve ser Preenchido!");
				document.getElementById(tipo).focus();
				return false;
			}
		else
			{
				if(!valida_email(document.getElementById('email').value))
					{
						alert("E-mail inválido!");
						document.getElementById(tipo).focus();
						return false;
					}
			}
	}
	
	//validação da Senha	
	if (trim(document.getElementById("senha").value)=='')
		{
			alert("A senha deve ser Preenchida!");
			document.getElementById("senha").focus();
			return false;
		}
	else if(document.getElementById("senha").value.length < 4)
		{
			alert("A senha deve ter no mínimo 4 Caracteres!");
			document.getElementById('senha').focus();
			return false;
		}
	
	return true;
}