function PoiAttr( sgrp, callback ){
	this.uc="/map/uc/PoiAttr?";
	this.ph= new mapionFuncs.text.ParamHashForUC();
	
	this.ph.put("grp", grp);
	this.ph.put("vo", "mbml");
	this.ph.put("json", 1);
	if( sgrp ) this.ph.put("sgrp", sgrp);
	if( callback ) this.ph.put("callback", callback);
	// 汎用パラメータ
	this.general="";
};

// Common継承
PoiAttr.prototype = Common.prototype;

// 与えられたフォームからパラメータを作成します
PoiAttr.prototype.createParam=function(f){

};

// 汎用パラメータをセットします
PoiAttr.prototype.setGeneralParam=function(p){
	this.general=p;
};

// 汎用パラメータを取得します
PoiAttr.prototype.getGeneralParam=function(){
	return this.general;
};

// POI属性検索
PoiAttr.prototype.getPoiData=function(){
	this.getData(this.uc+this.ph+"&"+this.general, true);
};

// POI属性検索＆最寄の店舗検索
PoiAttr.prototype.getAttrDataWithNgrp=function(ngrp, dist){
	this.ph.remove("ngrp");
	this.ph.remove("ndist");
	this.ph.put("ngrp", ngrp);
	this.ph.put("ndist", dist);
	this.getData(this.uc+this.ph+"&"+this.general, true);
};
