function checkLogin() 
{   
   with (document.frmlogin)
   {
     if (frmtxtlogin.value == "") 
	 {
       alert("O campo login não pode estar em branco.");
       frmtxtlogin.focus();
       return false;
     }
		
     if (frmtxtsenha.value == "") 
	 {
       alert("O campo senha não pode estar em branco.");
       frmtxtsenha.focus();
       return false;
     }
		
     return true;
   }
}

function checkLogout()
{
   if(confirm("Deseja realmente encerrar a sessão?"))
   { window.location="http://www.filmeb.com.br/portal/html/adm_login_logout.php?origem_logout=DBB&"; }
}