function changeDisplay(element_id) {
    elem = document.getElementById(element_id);
    (elem.style.display.indexOf('none') != -1) ? elem.style.display = '' : elem.style.display = 'none';
}

function searchFormFocus(th,lang) {
  str = 'поиск'
  if (lang == 'uk') str = 'пошук'
  if (th.value == str) { th.value = ''; th.style.color = 'black' }
}

function searchFormBlur(th,lang) {
  str = 'поиск'
  if (lang == 'uk') str = 'пошук'  
  if (th.value == '') { th.value = str; th.style.color = 'gray'  }
}
