function choose(){}
choose.prototype.Parm = 0;		//url参数
choose.prototype.Type1 = "";	//url参数
choose.prototype.Nums = 0;		//总数量
choose.prototype.Page	= 1;
choose.prototype.Order	= "";	//排序
choose.prototype.ProdList = new Array();

choose.prototype.set_Parm = function(parm){
		Parm = parm
}

choose.prototype.get_Parm = function(){
		return Parm;
}

choose.prototype.set_Type1 = function(type1){
		Type1 = type1
}

choose.prototype.get_Type1 = function(){
		return Type1;
}

choose.prototype.set_Order = function(order){
		Order = order
}

choose.prototype.get_Order = function(){
		return Order;
}

choose.prototype.set_nums = function(nums){
		Nums = nums
}

choose.prototype.get_nums = function(){
		return Nums;
}


choose.prototype.set_page = function(page){
		Page = page;
}

choose.prototype.get_page = function(){
		return Page;
}
