function post_lang(lang) {
   var temp=document.createElement("form");
   temp.action=window.location.href;
   temp.method="POST";
   temp.style.display="none";
   var par=document.createElement("textarea");
   par.name="lang";
   par.value=lang;
   temp.appendChild(par);
   document.body.appendChild(temp);
   temp.submit();
   return temp;
}


