function validate_login(){var b=document.getElementById("login_username").value;var a=document.getElementById("login_password").value;if(b.length==0||a.length==0){document.getElementById("login_msg").innerHTML=PLEASE_INSERT_BOTH_FIELDS;return false}else{return true}};
