﻿
      function IncluirNaLista(IdCliente, IdGame, btnAlugarID)
      {
         Gamemcasa.WebServices.wsCliente.IncluirNaLista(IdCliente, IdGame, Sucesso(btnAlugarID, IdGame), Falha);
      }
      
      function Sucesso(btnAlugarID, IdGame)
      {
         if (btnAlugarID.toLowerCase().indexOf("jogados") > -1)
         {
            
            for (i = 0; i < document.forms[0].length; i++)
            {
               if (document.forms[0][i].type == "submit")
               {
                  var botao = document.forms[0][i];
                  
                  if (botao.value == "JOGAR NOVAMENTE")
                  {
                     if (botao.attributes["onclick"].nodeValue.split(",")[1] == IdGame)
                     {
                        botao.value = "JÁ NA LISTA";
                        botao.className = "BtCinza";
                        botao.disabled = true;
                     }
                  }
               }
            }
         
            //document.location.href = 'Meus_Games_02.aspx';
         }
         else         
         {
            document.getElementById(btnAlugarID).value = "JÁ NA LISTA";
            document.getElementById(btnAlugarID).className = "BtCinza";            
            document.getElementById(btnAlugarID).disabled = true;
         }
      }
      
      function Falha(Erro)
      {
         alert(Erro._message);
      }

