function catchResult(){
	if (xmlHttp.readyState==4){
		s=xmlHttp.responseText;
		var obj=document.getElementById('chkr');
		if (xmlHttp.status == 200) {
    			if (s=='true'){
    				window.status='登錄成功';
    				obj.innerHTML='登錄成功';
    			}else{
    				obj.innerHTML='登錄失敗';
    				window.status='登錄失敗';
    			}
		}
	}

}
