function Validator(theForm)
{
if (theForm.question1.value == "0")
{
  alert("Please answer all three questions.");
  return (false);
}
if (theForm.question2.value == "0")
{
  alert("Please answer all three questions.");
  return (false);
}
if (theForm.question3.value == "0")
{
  alert("Please answer all three questions.");
  return (false);
}
if (theForm.name.value == "")
{
alert("Please enter your Name.");
theForm.name.focus();
return (false);
}
if (theForm.email.value == "")
{
alert("Please enter your E-mail address.");
theForm.email.focus();
return (false);
}
if (theForm.email.value.length < 6)
{
alert("Please enter a valid E-mail address.");
theForm.email.focus();
return (false);
}

return (true);
}
