<!--


/* Form validating function.
It is bound to the given form object.
It MUST NOT accept any parameters.
In case form data is invalid, function SHOULD inform user about this fact, and MUST RETURN FALSE.
Otherwise function MUST RETURN TRUE. */
function ValidateLogin() {
 if ((this.userLogin.value == "") || (this.userPass.value == "")) {
  alert('Either Login of Password field is empty. Form submitting is unavailable.');
  return false;
 }
 return true;
}


function PlaceFormTag() {
 DocLoc = String(document.location);
 document.write('<form name="LoginForm" method="post" action="'+DocLoc+'">');
}


-->
