function validator(theForm)
{


  if((theForm.q.value == "") || (theForm.q.value == "Search..."  ))
  {
    alert("Please enter a value for the \"Search\" field.");
    theForm.q.focus();
    return (false);
  }	
}

function check(elem)
	{
	if (elem.value=="Search...") elem.value="";
	}
	
	
