function notEmpty(currentForm)
{
  var result = true;

  if(currentForm.q.value == "" || currentForm.q.value == "Search for free software")
  {
    result = false;
    alert("Please type in what kind of software you are searching for.\nExample: \"mp3\" or \"puzzle\"");
  }

  return result;
}
