function chkform(theform)
{
	if(!theform["login"].value)
	{
		alert("Digite o seu Login");
		theform["login"].focus();
		return false;
	}
	if(!theform["senha"].value)
	{
		alert("Digite a sua Senha");
		theform["senha"].focus();
		return false;
	}
	return true;
}