home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 September / PCWorld_2001-09_cd.bin / Software / Komercni / LEDA / info / applets / formular.js < prev   
Text File  |  2001-08-03  |  748b  |  38 lines

  1. function isEmpty(theField) {
  2.     if (theField.value == ""){
  3.         return true;
  4.     }
  5.     else {
  6.         return false;
  7.     }
  8. }
  9.  
  10. function isRequired(Form1) {
  11.  
  12. var Empty = false;
  13.  
  14. if (isEmpty(Form1.Jmeno)) {
  15.     alert("Je nutnΘ vyplnit JmΘno. Prosφme vyplnit.");
  16.     Empty = true;
  17.     }
  18. if (Empty == false && isEmpty(Form1.Prijmeni) == true) {
  19.     alert("Je nutnΘ vyplnit P°φjmenφ. Prosφme vyplnit.");
  20.     Empty = true;
  21.     }
  22. if (Empty == false && isEmpty(Form1.Ulice) == true) {
  23.     alert("Je nutnΘ vyplnit Ulice. Prosφme vyplnit.");
  24.     Empty = true;
  25.     }
  26. if (Empty == false && isEmpty(Form1.Mesto) == true) {
  27.     alert("Je nutnΘ vyplnit M∞sto. Prosφme vyplnit.");
  28.     Empty = true;
  29.     }
  30. if (Empty == false) {
  31.     alert(" V po°ßdku!! D∞kujeme.");
  32.     Form1.submit()
  33.     }
  34. }
  35.  
  36.  
  37.  
  38.