const SEARCH = 'Search_'; // default value of the search text field

function searchFormFocus(){
  var s = document.getElementById('s');
  if(s.value == SEARCH)
    s.value = '';
}

function searchFormBlur(){
  var s = document.getElementById('s');
  if(!s.value)
    s.value = SEARCH;
}
