function General(){
	this.uc="/map/uc/General?";
	this.ph= new mapionFuncs.text.ParamHashForUC();
	
	this.ph.put("grp", grp);
	this.ph.put("vo", "mbml");
	this.ph.put("json", 1);
	this.ph.put("callback", "gene");
	// 汎用パラメータ
	this.generalp="";
};

// Common継承
General.prototype = Common.prototype;

// 与えられたフォームからパラメータを作成します
General.prototype.createParam=function(f){

};

// 汎用パラメータをセットします
General.prototype.setGeneralParam=function(p){
	this.generalp=p;
};

// 汎用パラメータを取得します
General.prototype.getGeneralParam=function(){
	return this.generalp;
};

// データ取得
General.prototype.getGeneralData=function(){
	this.getData(this.uc+this.ph+this.getGeneralParam(), true);
};

