function checkform(){
	if (document.loginbox.userid.value.length ==0){
		alert("Please input username");
		document.loginbox.userid.focus();
		return false;
	}
	if (document.loginbox.password.value.length==0){
		alert("Please input password");
		document.loginbox.password.focus();
		return false;
	}
	return true;
}	