function formValidator(theForm)
{

  if (theForm.puhelin.value == "") {
    alert("Täytä kohta: puhelinnumero!");
    theForm.puhelin.focus();
    return (false);
  }

  return (true);
}
