/***
 *
 *
 ***/

function submeterLoginCadastra(email1,email2) {
	if (
		validaUsuario(document.frmLoginCadastra.usuario)
		&& validaSenha(document.frmLoginCadastra.senha)
		&& confSenha(document.frmLoginCadastra.senha.value,document.frmLoginCadastra.senhaC.value)
		&& validaEmail(document.frmLoginCadastra.email.value)
		&& confEmail(document.frmLoginCadastra.email.value,document.frmLoginCadastra.emailC.value)
		&& validaCpf(document.frmLoginCadastra.doc) 
		) {
			if (
				document.frmLoginCadastra.nome.value != '' 
				&& document.frmLoginCadastra.nome.value != null
				&& document.frmLoginCadastra.nomeE.value != '' 
				&& document.frmLoginCadastra.nomeE.value != null
				&& document.frmLoginCadastra.telefones.value != '' 
				&& document.frmLoginCadastra.telefones.value != null
				) {
					if (document.frmLoginCadastra.tipo.value == 15) { 
						return true; 
					} else if (document.frmLoginCadastra.tipo.value == 30
						&& document.frmLoginCadastra.crecip.value != '' 
						&& document.frmLoginCadastra.crecip.value != null
						) {
						return true;
					} else if (document.frmLoginCadastra.tipo.value > 30 
						&& document.frmLoginCadastra.crecip.value != '' 
						&& document.frmLoginCadastra.crecip.value != null
						&& document.frmLoginCadastra.razao_social.value != '' 
						&& document.frmLoginCadastra.razao_social.value != null
						&& document.frmLoginCadastra.crecij.value != '' 
						&& document.frmLoginCadastra.crecij.value != null
						&& validaCnpj(document.frmLoginCadastra.cnpj.value) 
						) {
						return true;
					} else {
						alert("Existem campos obrigatórios sem preenchimento. \nTodos os campos marcados com '*' devem ser preenchidos.");
						return false;					
					}
					return false;
				} else {
					alert("Existem campos obrigatórios sem preenchimento. \nTodos os campos marcados com '*' devem ser preenchidos.");
					return false;
				}
		} 
	return false;
}

/***
 *
 *
 ***/

function attFrmLoginCadastra() {
	document.frmLoginCadastra.action = document.location.href;
	document.frmLoginCadastra.method = 'get';
	document.frmLoginCadastra.submit();
}//FECHA FUNCTION

