home *** CD-ROM | disk | FTP | other *** search
- function send()
- {
- if (pruefen() == true)
- document.formular.submit();
- }
-
- /**/
-
- function pruefen()
- {
- var f1 = document.formular.Item.value;
-
- if (f1.charAt(f1.length - 1) == '\\')
- {
- alert(f1 + '\n\n' + txt[28][26]);
- document.formular.Item.select();
- document.formular.Item.focus();
- return false;
- }
-
- var tea = f1.split('\\');
-
- if (f1.substr(0, 2) != '\\\\')
- {
- if (/^([c-z])+([:])$/i.test(tea[0]) == false)
- {
- alert(tea[0] + '\n\n' + txt[28][22]);
- document.formular.Item.select();
- document.formular.Item.focus();
- return false;
- }
- }
-
- var z = (f1.substr(0, 2) != '\\\\') ? 1 : 2;
-
- for (k = z; k < tea.length; k++)
- {
- if (/^([_a-z0-9- .]+)$/i.test(tea[k]) == false)
- {
- alert(tea[k] + '\n\n' + txt[28][23]);
- document.formular.Item.select();
- document.formular.Item.focus();
- return false;
- }
- }
-
- return true;
- }