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