function Validate_contact(name,code) {
   errfound = false;

   if (!ValidateLength(document.getElementById('Jmeno').value,1))
      FormError(document.getElementById('Jmeno'),"Vyplňte: Jméno a příjmení");
   
   if (!ValidateLength(document.getElementById('Telefon').value,1))
      FormError(document.getElementById('Telefon'),"Vyplňte: Telefon nebo e-mail");

   if (!ValidateLength(document.getElementById('Dotaz').value,1))
      FormError(document.getElementById('Dotaz'),"Vyplňte: Váš dotaz");
      
   if (code > 0)
     if (!ValidateLength(document.getElementById('Code').value,1))
        FormError(document.getElementById('Code'),"Vyplňte: ověřovací kód");
      
   return !errfound;
}
