function userLogin(uname, pwd) {
	document.UsrLog_Form.Username.value = trim(uname);
	document.UsrLog_Form.Password.value = trim(pwd);

	if (trim(document.UsrLog_Form.Username.value) == ""
	|| trim(document.UsrLog_Form.Username.value) == "undefined") {
		alert("Please enter username.");
		return;
	}
	if (trim(document.UsrLog_Form.Password.value) == ""
	|| trim(document.UsrLog_Form.Password.value) == "undefined") {
		alert("Please enter password.");
		return;
	}

	document.UsrLog_Form.action = "https://" + location.host + "/Admin/Login";
	document.UsrLog_Form.submit();
}
