
function searchboxindicator() { 
var styleclass_q = document.Form0.q.className;
document.Form0.q.onblur = function()
{
  var field = document.Form0.q;
  if (field.value == '') field.value = 'Search [Web and Local]';
}

document.Form0.q.onfocus = function()
{
  var field = document.Form0.q;
   if (field.value == 'Search [Web and Local]') field.value = '';
}
if (document.Form0.q.value == '') document.Form0.q.value = 'Search [Web and Local]';
}

if (window.addEventListener) {
   window.addEventListener("load",searchboxindicator,false);
} else { 
   window.attachEvent("onload",searchboxindicator);
}