// Valida�ao do formulário de Logistas
function validarLogista() {
	path = document.formLogista;
	if (path.ISCMNom.value.length <= 1){
		alert(dictionary[lang][14]);
		path.ISCMNom.focus();			
		return;
	}
	if (path.ISCMCPF.value.length <= 1){
		alert(dictionary[lang][15]);
		path.ISCMCPF.focus();			
		return;
	}
	if (path.INS_ESTADUAL.value.length <= 1){
		alert(dictionary[lang][16]);
		path.INS_ESTADUAL.focus();			
		return;
	}
	if (path.NOM_FANTASIA.value.length <= 1){
		alert(dictionary[lang][17]);
		path.NOM_FANTASIA.focus();			
		return;
	}
	if (!Validar_Email(path.ISCMMail.value)){
		alert(dictionary[lang][18]);
		path.ISCMMail.focus();			
		return;
	}
	if (path.ISCMDddC.value.length <= 1){
		alert(dictionary[lang][19]);
		path.ISCMDddC.focus();			
		return;
	}
	if (path.ISCMFonC.value.length <= 1){
		alert(dictionary[lang][20]);
		path.ISCMFonC.focus();			
		return;
	}
	if((path.DES_PERIODO[0].checked==false)&&(path.DES_PERIODO[1].checked==false)&&(path.DES_PERIODO[2].checked==false)){
	   alert(dictionary[lang][21]);
	   return;
	}
	//if((path.Resposta01a.checked==false)&&(path.Resposta01b.checked==false)&&(path.Resposta01c.checked==false)&&(path.Resposta01d.checked==false)&&(path.Resposta01e.checked==false)&&(path.Resposta01f.checked==false)&&(path.Resposta01g.checked==false)){
	if((path.Resposta01c.checked==false)&&(path.Resposta01d.checked==false)&&(path.Resposta01f.checked==false)&&(path.Resposta01g.checked==false)){
	   alert(dictionary[lang][21]);
	   return;
	}
	if((path.DES_COMERCIO[0].checked==false)&&(path.DES_COMERCIO[1].checked==false)&&(path.DES_COMERCIO[2].checked==false)&&(path.DES_COMERCIO[3].checked==false)&&(path.DES_COMERCIO[4].checked==false)&&(path.DES_COMERCIO[5].checked==false)&&(path.DES_COMERCIO[6].checked==false)&&(path.DES_COMERCIO[7].checked==false)){
	   alert(dictionary[lang][22]);
	   return;
	}

	path.submit();

}