function checaDados ()
{
	with (document.frmAdicionar)
	{
		if (txtAssunto.value == "")
		{
			alert ("Assunto em branco");
			txtAssunto.focus ();
			return false;			
		}
		else 
			if (txtNome.value == "")
			{
				alert ("Nome em branco");
				txtNome.focus ();
				return false;						
			}
			else 
				if (txtFonte.value == "")
				{
					alert ("Fonte em branco");
					txtFonte.focus ();
					return false;						
				}
				else 
					if	(txtTexto.value == "")
					{
						alert ("Texto em branco");
						txtTexto.focus ();
						return false;						
					}
					else 
						if (confirm("Confirme os dados antes de pressionar OK"))
							return true;
						else
							return false;
	}
}