function LangMenuHandler(){
	this.stillInMenuCell = false;
	this.DisplayMenu = function(myFunction){
		var it=document.getElementById('langselect');
		if(myFunction=="hide") stillInMenuCell = false;
		else stillInMenuCell = true;
		if(myFunction=="hide"){
			if (!stillInMenuCell){
				it.style.visibility='hidden';
			}
		}else{
			it.style.visibility='visible';
		}
	}
}
var lh = new LangMenuHandler();
