showModBox = function(id,over){
 var modBox = document.getElementById('modBox'+id);
 if(over){
  modBox.style.display='block';
 }else{
  modBox.style.display='none';
 }
}

setLng=function(value){
 setCookie('site_lng', value, 100, '/' );
 window.location=window.location;
}
