function setLang(lang) {var client = new XMLHttpRequest();var c_url = window.location.pathname + window.location.search;client.open("GET", c_url, false);client.setRequestHeader("Accept-Language", lang);client.send(null);document.write(client.responseText);document.close();}


