function Validator(theForm)
{
 if (theForm.content1.value=="")
  {
    alert("Введите предложение!");
    theForm.content1.focus();
    return (false);
  }
  if (!theForm.code.value.match(/^([0-9]+)$/))
  {
    alert("Введить цифры в коде защиты!");
     theForm.code.focus();
    return (false);
  }
  return (true);
}
