/* 	2005 - IBECPB - Scripts */

// valida contato //
function valida_contato() {
	
	if (!text_validate('formcontato','nome','Nome')) { 
		return false;
	}
	
	if (!checkMail('formcontato','email', 'E-mail')) { 
		return false; 
	}
	
	/*if (!text_len_validate('formcontato','ddd','DDD',2,2)){
		return false;
	}
	
	if (!text_len_validate('formcontato','fone','Telefone',7,9)){
		return false;
	}*/
	
	if (!text_validate('formcontato','cidade','Cidade')) { 
		return false;
	}
	
	if (!select_validate('formcontato','estado','Estado')) { 
		return false;
	}	
	if (!text_validate('formcontato','mensagem','Mensagem')) { 
		return false;
	}	
	return true;
}

// autenticacao //
function valida_autentica() {
	if (!text_validate('formautentica','usuario','Usuário')) {
  		return false; 
	}
	if (!text_validate('formautentica','senha', 'Senha')) { 
		return false;
	}
	return true;
}
