function Validator(theForm)
{
 if (theForm.content1.value=="")
  {
    alert("Введите ответ на тему!");
    theForm.content1.focus();
    return (false);
  }

  if (theForm.img.value !="")
  {
  if (document.getElementById('access').innerHTML != 1)
  {
    alert("Введите, пожалуйста, изображение соответствующее формату!");
    document.getElementById('img').focus();
    return (false);
  }
  }

  if (!theForm.code.value.match(/^([0-9]+)$/))
  {
    alert("Введить цифры в коде защиты!");
     theForm.code.focus();
    return (false);
  }
  return (true);
}
