13 lines
301 B
JavaScript
Executable File
13 lines
301 B
JavaScript
Executable File
<!--
|
|
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;
|
|
}
|
|
}
|
|
// -->
|