function showLocaleList(open) 
{
	display = open ? "block" : "none";
	e = document.getElementById("localeList");
	if (e != null) 
	{
		e.style.display = display;		
	}
}
