// functions for the country flag drop-down var langDD_bolDisableDocOnClickHide = false; langDD_Initialize(); function langDD_Initialize() { var BodyTags = document.getElementsByTagName('body'); for (var i = 0; i < BodyTags.length; i++) BodyTags[i].onclick = langDD_hideCultures; langDD_hideCultures(); } function langDD_switchHidden() { if (document.getElementById("countryoptions").style.display != "none") document.getElementById("countryoptions").style.display = "none"; else document.getElementById("countryoptions").style.display = "block"; } function langDD_hideCultures() { if (!langDD_bolDisableDocOnClickHide) document.getElementById("countryoptions").style.display = "none"; } function langDD_disableDocOnClickHide() { langDD_bolDisableDocOnClickHide = true; } function langDD_enableDocOnClickHide() { langDD_bolDisableDocOnClickHide = false; }