home *** CD-ROM | disk | FTP | other *** search
- function send()
- {
- if (pruefen() == true)
- document.formular.submit();
- }
-
- /**/
-
- function pruefen()
- {
- var fu = new Array('',
-
- txt[25][4],
- txt[18][7],
- txt[25][5],
- txt[25][6],
- txt[25][7],
- txt[25][8],
- txt[25][9],
- txt[25][10],
- txt[25][11],
- txt[25][15],
- txt[25][16],
- txt[18][17],
- txt[18][21],
- txt[18][10],
- txt[25][12],
- txt[25][13],
-
- '');
-
- var anz = fu.length - 1;
-
- for (i = 1; i < anz; i++)
- {
- var fe = document.forms[0].elements[i].value;
-
- if ((fe != -2) && (fe != -1) && ((fe.match(/\D/) != null) || (fe < 1) || (fe > 2097152)))
- {
- alert(txt[19][9] + fu[i] + txt[25][14]);
- document.forms[0].elements[i].select();
- document.forms[0].elements[i].focus();
- return false;
- }
- }
-
- return true;
- }