	//Ajax
		
	var http_request = false;
	var flag = 0;
	var flags = 0;
	
	
	function valData ()
	{
		if (document.getElementById('txtNome').value==""){
			alert('O campo Nome é de preenchimento obrigatório.');
			return (false);
		} else if (document.getElementById('txtContacto').value==""){
			alert('O campo Contacto é de preenchimento obrigatório.');
			return (false);
		} else if (document.getElementById('txtTelefone').value==""){
			alert('O campo Telefone é de preenchimento obrigatório.');
			return (false);
		} else if (document.getElementById('txtEmail').value==""){
			alert('O campo Email é de preenchimento obrigatório.');
			return (false);
		}
	}
	
