function CheckFormOrder(theForm) { 
  z = true;
  if (theForm.fio.value=="")  
  { 
   alert ("Введите Ф.И.О."); 
   return (false); 
  } 
   if (theForm.num.value=="")  
  { 
   alert ("Введите № Телефона"); 
   return (false);  
  } 
if (theForm.adress.value=="")  
  { 
   alert ("Введите Адрес для Доставки"); 
   return (false);  
  } 
  
}
