	
function Ok_click()
{
	if (document.login.nome.value != "" && document.login.senha.value != "") 	
	{
		xx = document.login.nome.value;
        	              xx = xx.toUpperCase();
		yy = document.login.senha.value;		
        	              yy = yy.toUpperCase();

		if ( xx != "BMG"){
	                     alert("O usuário não confere !!!");
			document.login.nome.focus();	
                            }else{ 
                               if ( yy != "BMG2138"){
	                     alert("A senha não confere !!!");
		       document.login.senha.focus();	
                                }
		}
		if ( xx == "BMG" && yy == "BMG2138"){
      		document.location="tb_revenda.htm" ;
                            }
           
             } else {
		if( document.login.nome.value == ""){
			alert("Preencha seu login !!");
			document.login.nome.focus();	
		} else {
			alert("Preencha sua senha !!");
			document.login.senha.focus();	
		}
           }
}