function ValidarRadar()
{
	if (document.getElementById("form_radar").cnpj.value=="") {
		alert("O CNPJ é um campo obrigatório!");
		document.getElementById("form_radar").cnpj.focus();
		return ;
	}
	if (document.getElementById("form_radar").senha.value=="") {
		alert("A senha é um campo obrigatório!");
		document.getElementById("form_radar").senha.focus();
		return ;
	}
	if (document.getElementById("form_radar").empresa.value=="") {
		alert("A empresa é um campo obrigatório!");
		document.getElementById("form_radar").empresa.focus();
		return ;
	}
	if (document.getElementById("form_radar").nf.value=="") {
		alert("A nota fiscal é um campo obrigatório!");
		document.getElementById("form_radar").nf.focus();
		return ;
	}
	document.getElementById("form_radar").submit();
}
