function logincheck() {
   if(document.getElementById("id").value==""){
		alert("请填写学员档案号!");
		return false;
	}
	if(document.getElementById("id").value.length<10){
		alert("请填写10位完整档案号!");
		return false;
	}

}