You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
301 B
13 lines
301 B
4 months ago
|
<!--
|
||
|
function validate_form(objForm) {
|
||
|
if (objForm.uid.value == '' || objForm.pwd.value == '') {
|
||
|
alert("You must enter your Login ID and Password.");
|
||
|
return false;
|
||
|
} else {
|
||
|
if (objForm.clid.value == 'sacc' || objForm.clid.value == '')
|
||
|
objForm.clid.value = 'std';
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
// -->
|