 /**
  * 在注册页上验证邮箱是否已经注册过
  */
function isUserExist(){
	//alert("start!");
	var userEmail = (document.getElementById("umail")).value;
	//alert("url:"+host_ip+"/servlet/IsUserExistAjax?umail="+userEmail+"&"+Math.random());
 	$.ajax({
		type: "get",
		url: host_ip+"/servlet/IsUserExistAjax?umail="+userEmail+"&"+Math.random(),
		beforeSend:function(){
			//alert("loading...");
			//var loadding;
			$("#email_tip").html("请稍候...");
		},
		success: function(content){
			//alert("content:"+content);
			$("#email_tip").html(content);
		}
	})
 }