function validarCamposInqueritoDAMConflitosEmpresariais()
{
    if (document.getElementById("tfConcelho").value == "")
    {
	    alert("Campo 'Concelho' é de preenchimento obrigatório.");
	    document.getElementById("tfConcelho").focus();
	    return false;
    }
    if (document.getElementById("tfArea").value == "")
    {
	    alert("Campo 'Área' é de preenchimento obrigatório.");
	    document.getElementById("tfArea").focus();
	    return false;
    }
    
    var inquerito=confirm("Os campos que não foram preenchidos serão considerados como NS/NR. Deseja continuar?")
	if (inquerito==true){
		return true;
	}else{
		return false;
	}
}
