var id;
var List;
var timeout;
var selectedCountry;
//------------------
// Dispach language
//-- 
function Show(id) {
	stopTimer();
	
	if ($(id)) {
		$(id).style.visibility = 'hidden';
	}
			
	List=id;
	$(List).style.visibility = 'visible';

}

function stopTimer(){
	clearTimeout(timeout);
}

function Hide(id) {
	if($(id)){
		$(id).style.visibility = 'hidden';
	}
}

function starthide (){
	stopTimer();
	timeout = setTimeout("Hide('"+List+"');",100);
}

function SetDiv(id,langue,v){
	document.getElementById(id).innerHTML = langue;
	starthide ();
	selectedCountry=v;
}
function goLanguage(){
	if(selectedCountry!=null){
		document.location.href=selectedCountry+"/";
		//document.location.href="?langue="+selectedCountry;
	}
}


