
function checkValidateLoginForm(){
	var obj = document.getElementById("UserId");
	if(obj.value == ''){
		alert("Please input account.");
		obj.focus();
		return false;
	}
	obj = document.getElementById("Password");
	if(obj.value == ''){
		alert("Please input password.");
		obj.focus();
		return false;
	} 

	return true;
}