function validarCamposInqueritoOUTROAmicaleKarate(){
	if (document.getElementById("tfEmpresa").value == ""){
		alert("'Company's Name' is a mandatory field.");
		document.getElementById("tfEmpresa").focus();
		return false;
	}else if (document.getElementById("tfContacto").value == ""){
		alert("'Contact Person' is a mandatory field.");
		document.getElementById("tfContacto").focus();
		return false;
	}else if (document.getElementById("tfEmailEmpresa").value == ""){
		alert("'E-mail' is a mandatory field.");
		document.getElementById("tfEmailEmpresa").focus();
		return false;
	}
}