x5AO@X{͎DhRcU4Y`]3X!%˛'"!=+? // Xlations function get_xl (code) { if (code == 'OB_ERR_VAL_BAD_UNAME_FORMAT') return "Invalid Username: Minimum of 6 alphanumeric characters"; else if (code == 'OB_ERR_VAL_BAD_PWD_FORMAT') return "Invalid Password: Minimum of 6 alphanumeric characters"; } var xl_username = "username"; var xl_password = "password"; // Validate login function check_login () { var f = document.forms['fm_login']; var ret = check_login_params(f.login_username.value, f.login_pwd.value, xl_username, xl_password); if (ret != '') { window.alert(get_xl(ret)); return false; } return true; } // submit Form function submit_form () { var f = document.forms['fm_login']; f.submit (); } function passwordBlur() { if(document.getElementById("login_pwd_id").value.length == 0) { document.getElementById("login_pwd_id").style.display = "none"; document.getElementById("login_text_id").style.display = "inline"; } } function passwordFocus() { document.getElementById("login_pwd_id").style.display = "inline"; document.getElementById("login_text_id").style.display = "none"; document.getElementById("login_pwd_id").focus(); }