<!--
function Validate() {
  FixThis = "";

  if (document.ask.name.value.length < 2) {
    FixThis = FixThis + "* You haven't entered your name. It doesn't have to be real.\n"; }

  if (document.ask.location.value.length < 2) {
    FixThis = FixThis + "* You haven't entered your location. It makes a difference!\n"; }

  if (document.ask.question.value.length < 15) {
    FixThis = FixThis + "* You haven't entered your question. Try to be detailed.\n"; }

  if (FixThis > "") {
    alert("Please correct the following problems before submitting your question:\n\n" + FixThis)
    return false }
}
// -->