﻿// JScript File

function selectChampion(objSelected)
{
   
    for(var i=0;i<objSelected.attributes.length; i++)
    {
    
    
        if(objSelected.attributes[i].name=="email")
        {
            var strEmail = objSelected.attributes[i].value;
           
            document.getElementById("selectedChampionEmail").value = strEmail;
        }
        
      
       
    }
    
     var strName = objSelected.innerHTML;
     document.getElementById("selectedChampion").value = strName;

    
     var championList = document.getElementById("championListContainer");
     championList.style.display="none";
}


function toggleChampionList()
{
    var championList = document.getElementById("championListContainer");
    
    if(championList.style.display=="block")
    {
        championList.style.display="none";
    }
    else
    {
        championList.style.display="block";
    }
}
