function Showqgpic(){
	var mobile=jstrim(document.getElementById("mobile").value);
	if(mobile==""){
		alert("请先输入你的手机号码");return false;
	}else if(!checkisnumber(mobile,0) || mobile.length!=11){
		alert("请输入由11位数字组成的手机号码");return false;
	}else if(checkmobile(mobile)){
		alert("手机号码格式不正确\n\n移动号码判断规则为13400000000～13489999999, 13500000000～13999999999,15000000000～15999999999\n联通号码判断规则为13000000000～13399999999。");return false;
	}else{
		if(document.getElementById("qgpic").style.display!="block"){
		   var url="/ajax.aspx?action=checkgpmobile&mobile="+mobile+"&randtime="+GetRands();
		   loadAjaxDataAsynchronousV(url,"Resultqgpic");
		}
	}
}

function Resultqgpic(html){
	html=unescape(html);
	if(html=="yes"){
		document.getElementById("qgpic").style.display="block";
	}else{
		alert(html);
	}
}