// JavaScript Document

function hideOthers(idLayer){
	document.getElementById("othercountries_bg").style.display = 'none';
	document.getElementById("othercountries").style.display = 'none';
}

function showOthers(idLayer){
	document.getElementById("secondcountries_items").style.display = 'none';
	document.getElementById("othercountries_bg").style.display = 'block';
	document.getElementById("othercountries").style.display = 'block';
}

function showSecond(idLayer){
	document.getElementById("secondcountries_items").style.display = 'block';
}