Hinan.loadingWH('dataloading',230,80);
function getLoading(){
	Hinan.loadingWH('dataloading',230,80);
	return true;
}
function logincheckdata(thisform){
	var username = thisform.username.value;
	if(username==""){
		alert("Please fill in the correct \'Username\'");
		thisform.username.focus();
		return false;
	}
	if(username.length<4 || username.length>30){
		alert("Please fill in the correct \'Username\',4~30 characters in length!");
		thisform.username.focus();
		return false;
	}
	if(!checkStringEnter(username)){
		alert("Please fill in the correct \'Username\' Must be provided by [a-z], [A-Z], [0-9 ],[-_] composition");
		thisform.username.focus();
		return false;
	}
	var psword = thisform.psword.value;
	if(psword==""){
		alert("Please fill in the correct \'Password\'");
		thisform.psword.focus();
		return false;
	}
	if(psword.length<6 || psword.length>30){
		alert("Please fill in the correct \'Password\',4~30 characters in length!");
		thisform.psword.focus();
		return false;
	}
	if(!checkStringEnter(psword)){
		alert("Please fill in the correct \'Password\' Must be provided by [a-z], [A-Z], [0-9 ],[-_] composition");
		thisform.psword.focus();
		return false;
	}
	return true;
}
