document.write("<SCRIPT LANGUAGE='JavaScript1.2' SRC='/scripts/check_form_base.js'></SCRIPT>");

function check_forgot_password_form()  {

// need to check username 
// username
    if  (!hasValue(document.login.username, "TEXT" ) || checkInteger(document.login.username.value )) {
        if  (!onError(document.login, document.login.username, document.login.username.value, "Please enter a  username."))
        {
         document.login.username.focus();
         return false; 
        }
    }

} // end of function check_contact_form
