function checaDados ()
{
	with (frmLogin)
	{
		if (txtEmail.value == "")
		{
			alert ("O Campo e-mail não pode ser vazio!");
			txtEmail.focus ();
		}
		else
			if (txtSenha.value == "")
			{
				alert ("Coloque uma senha!");
				txtSenha.focus ();
			}
			else
				return true;
		return false;
	}
}
