function template_searchFocus() {
 var o = document.getElementById('template_searchBox');
 if (o.value == 'Search') {
  o.value = '';
 }
}

function template_searchBlur() {
 var o = document.getElementById('template_searchBox');
 if (o.value == '') {
  o.value = 'Search';
 }
}

