function checkFrmAddIdentification() {
 var strAlert = "";
 
 if (document.forms['frmAddIdentification']['textNameUser'].value == "") strAlert += "    Vaše jméno\n";
 if (document.forms['frmAddIdentification']['filePhoto1'].value == "") strAlert += "    Fotografii 1\n";
 if (document.forms['frmAddIdentification']['textEmail'].value == "") strAlert += "    Email\n";
 
 
 if (strAlert == "") return false;
 else {
  alert("Zapoměli jste zadat:\n\n" + strAlert + "\n Doplňte prosím chybějící údaje.\t");
  return true;
 }
}

function checkFrmAddComment() {
 var strAlert = "";
 
 if (document.forms['frmAddComment']['textAuthor'].value == "") strAlert += "    Autora\n";
 if (document.forms['frmAddComment']['textComment'].value == "") strAlert += "    Komentář\n";
 
 if (strAlert == "") return false;
 else {
  alert("Zapoměli jste zadat:\n\n" + strAlert + "\n Doplňte prosím chybějící údaje.\t");
  return true;
 }
}
