function colllect(type,id){
	if(type!=1 && type!=2){
	}else{
	    afterinclude=true;		
		if(type==1){
			makeRequest("/search/house_collect.php?type=1&hid="+id,"","collectCallBack","");
		}else{
			makeRequest("/search/house_collect.php?type=2&hid="+id,"","collectCallBack","");
		}
	}
}
function collectCallBack(param){
	if(param=="1"){
		alert("物件已加入收藏");
	}else if(param=="2"){
		ajaxlogin();
	}
}