// JavaScript Document

function validaContato(){
	form = document.getElementById('frmContato');
	var vc_erro		= new String();
	var vc_foco		= 0;
	
	if (form.destinatarioVC.value.length == 0){
	 	vc_erro		+= '- Selecione o DESTINATÁRIO.\n';
		if(vc_foco == 0) {
			vc_foco = form.destinatarioVC;
		}
	}
	
	if (form.nomeVC.value.length == 0){
	 	vc_erro		+= '- Digite o NOME.\n';
		if(vc_foco == 0) {
			vc_foco = form.nomeVC;
		}
	}
	
	if (form.cnpjVC.value.length > 0){
		if(valida_CNPJ(form.cnpjVC.value) == false){
			vc_erro		+= '- CNPJ inválido.\n';
			if(vc_foco == 0) {
				vc_foco = form.cnpjVC;
			}
		}
	}
	
	if (form.emailVC.value.length != 0){
		vc_erro	+= verficaEmail(form.emailVC.value);
	}else{
		vc_erro	+= '- Digite o E-MAIL.\n';
	}
	
	if (form.vc_fone_1_ddd.value.length == 0 || form.vc_fone_1_prefixo.value.length == 0 || form.vc_fone_1_sufixo.value.length == 0){
		vc_erro		+= '- Digite o TELEFONE.\n';
		if(vc_foco == 0) {
			vc_foco = form.vc_fone_1_ddd;
		}
	}
	
	if (form.cidadeVC.value.length == 0){
		vc_erro		+= '- Digite a CIDADE.\n';
		if(vc_foco == 0) {
			vc_foco = form.cidadeVC;
		}
	}
	
	if (form.estadoVC.value.length == 0){
		vc_erro		+= '- Digite o ESTADO.\n';
		if(vc_foco == 0) {
			vc_foco = form.estadoVC;
		}
	}
	
	if (form.assuntoVC.value.length == 0){
		vc_erro		+= '- Digite o ASSUNTO.\n';
		if(vc_foco == 0) {
			vc_foco = form.assuntoVC;
		}
	}
	
	if (form.mensagemVC.value.length == 0){
		vc_erro		+= '- Digite a MENSAGEM.\n';
		if(vc_foco == 0) {
			vc_foco = form.mensagemVC;
		}
	}

	
	if (vc_erro.length == 0) {
			document.all.frmContato.submit();
	} else {
		alert('ATENÇÃO!\n\n' + vc_erro);
		if (vc_foco != 1 && vc_foco != 0){
			vc_foco.focus();
		}
		return false;
	}
	
}



