home *** CD-ROM | disk | FTP | other *** search
- function isEmpty(theField) {
- if (theField.value == ""){
- return true;
- }
- else {
- return false;
- }
- }
-
- function isRequired(Form1) {
-
- var Empty = false;
-
- if (isEmpty(Form1.Jmeno)) {
- alert("Je nutnΘ vyplnit JmΘno. Prosφme vyplnit.");
- Empty = true;
- }
- if (Empty == false && isEmpty(Form1.Prijmeni) == true) {
- alert("Je nutnΘ vyplnit P°φjmenφ. Prosφme vyplnit.");
- Empty = true;
- }
- if (Empty == false && isEmpty(Form1.Ulice) == true) {
- alert("Je nutnΘ vyplnit Ulice. Prosφme vyplnit.");
- Empty = true;
- }
- if (Empty == false && isEmpty(Form1.Mesto) == true) {
- alert("Je nutnΘ vyplnit M∞sto. Prosφme vyplnit.");
- Empty = true;
- }
- if (Empty == false) {
- alert(" V po°ßdku!! D∞kujeme.");
- Form1.submit()
- }
- }
-
-
-
-