// contato
function contato(contatoForm){
	var $form = contatoForm;
	var $nomeFC = $form.nomeFC;
	var $emailFC = $form.emailFC;
	var $telefoneFC = $form.telefoneFC;
	var $codEstado = $form.codEstado;
	var $codCidade = $form.codCidade;
	var $sexoFC = $form.sexoFC;
	var $nascimentoFC = $form.nascimentoFC;
	var $assuntoFC = $form.assuntoFC;
	var $mensagemFC = $form.mensagemFC;
	var $windowConfirm = $form.windowConfirm;
	var $validation = new Validation();
	
	if($nomeFC.value==''){
		$nomeFC.focus();
		vxmAlert('msg','red','Fill the field Name.');
		return false;
	}
	if($validation.checkEmail($emailFC.value)===false){
		$emailFC.focus();
		vxmAlert('msg','red','Fill the field Email.');
		return false;
	}
	if($codEstado.value==''||$codEstado.value=='-1'){
		$codEstado.focus();
		vxmAlert('msg','red','Fill the field UF.');
		return false;
	}
	if($codCidade.value==''||$codCidade.value=='-1'){
		$codCidade.focus();
		vxmAlert('msg','red','Fill the field City.');
		return false;
	}
	if($assuntoFC.value==''){
		$assuntoFC.focus();
		vxmAlert('msg','red','Fill the field Matter.');
		return false;
	}
	if($mensagemFC.value==''){
		vxmAlert('msg','red','Fill the field Message.');
		return false;
	}
	
	disableButton($form);
	return true;
}
