 function CheckCallForm(f){
   if(f.name_call.value==''){
      alert('Введите свое имя');
      f.name_call.focus();
      return false;
   }

   if(f.phone_call.value==''){
      alert('Введите телефон');
      f.phone_call.focus();
      return false;
   }

   if(f.yourcode_call.value==''){
      alert('Введите код, указанный на картинке');
      f.yourcode_call.focus();
      return false;
   }

   return true;
}
