// JavaScript Document
window.onload=function() {
   df=document.forms[0];
   df[0].focus();
   df[1].onclick=function() {
if((isNaN(df[0].value))||(df[0].value=='')) {
   alert('please enter an item to search for');
   df.reset();
   df[0].focus();
   return;
 }
location.href=df[0].value+'.htm';
  }
 }
window.onload = function() {
if (document.getElementById("Input")) {
var s = document.getElementById("Input");
var v = s.defaultValue;
s.onfocus = function() {if(s.value==v) s.value='';}
s.onblur= function() {if(s.value=='') s.value=v;}
}
}

