home *** CD-ROM | disk | FTP | other *** search
- function send()
- {
- if (pruefen())
- document.formular.submit();
- }
-
- /**/
-
- function pruefen()
- {
- with (document.formular)
- {
- var f1 = T1.value;
- var f2 = T2.value;
-
- if (isNaN(f1) || (f1 < 1) || (f1 > 30))
- {
- alert(txt[17][4]);
- T1.select();
- T1.focus();
- return false;
- }
-
- if (isNaN(f2) || (f2 < 4) || (f2 > 20))
- {
- alert(txt[17][8]);
- T2.select();
- T2.focus();
- return false;
- }
- }
-
- return true;
- }