function EsqueciSenha()
{
	var win = window.open("aluno_sem_senha.php", "_senha","width=320,height=200,left=100,top=200,resizable=yes,status=no");
	win.focus();
}

function critica()
  {
	if (document.frmlogin.email.value == "" || document.frmlogin.email.value.indexOf ('@') == -1 || document.frmlogin.email.value.indexOf ('.') == -1)
	{ alert("Campo Obrigatório: E-MAIL\nVerifique se o E-MAIL está correto"); document.frmlogin.email.focus(); return (false) }
	if (document.frmlogin.senha.value == "")
	{ alert("Campo Obrigatório: SENHA"); document.frmlogin.senha.focus(); return (false) }
	return (true);
  }
  
  function validarN(){
     var tecla = window.event.keyCode;
     if((tecla != 8)&&(tecla != 46)){
       if((tecla < 48)||(tecla > 57)){
         if((tecla < 96)||(tecla > 105)){
           event.returnValue = false;
         }  
       }  
     } 
   }
