function validate_form(theForm)
{

  if (theForm.search.value == "")
  {
    alert("Please enter a value for the \"Search\" field.");
    theForm.search.focus();
    return (false);
  }

  return (true);
}

function validate_support(theForm)
{
    
  if (theForm.FullName.value == "")
  { 
    alert("Please enter a value for the \"Name\" field.");
    theForm.FullName.focus();
    return (false);
  }

  if (theForm.Email.value == "")
  { 
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.Email.focus();
    return (false);
  }
    
  if (theForm.URL.value == "http://")
  {
    alert("Please enter a value for the \"URL\" field.");
    theForm.URL.focus();
    return (false);
  }
  if (theForm.Question.value == "")
  { 
    alert("Please enter a value for the \"Question\" field.");
    theForm.Question.focus();
    return (false);
  }
   
  return (true);
}

