function dropdownMenuToggle(whichOne){
    theStyle = document.getElementById(whichOne).style;

    if (theStyle.display == "none") {
        theStyle.display = "block"; 
    } else
        theStyle.display = "none";
}


function selectLang(theDisplay, iconUrl) {
	document.getElementById("dropdownHiddenLang").style.display = "none";
	//document.getElementById("default-game-icon").src = iconUrl;
	//document.getElementById("default-game-name").innerHTML = theDisplay;	
	
//	document.getElementById("displayLang").innerHTML = theDisplay;
//	setcookie("cookieLangId", cookieValue);
//	document.location.reload();

	window.location = "/ranking/" + theDisplay;
}


