function text_focus (str) {
  if (str.value == 'サイト内検索') {
    str.value = '';
  }
  str.style.color = '#000';
}


function text_blur (str) {
  if (str.value == ''){
    str.style.color = '';
    str.form.reset();
  }
}