function clsProp(args)
{
	this.propCode= args[0];
	this.propName= args[1];
	this.seriesCode = args[2];
	this.catCode = args[3];
	this.propOpera  = args[6];
	var optionValues = args[4];
	var optionNames  = args[5];
	this.propOptionValues = optionValues.split(";");
	this.propOptionNames = optionNames.split(";");
	
	
}
function clsPropPool()
{
	this.Props = new Array();
}
clsPropPool.prototype.add = function()
{
	this.Props[this.Props.length] = new clsProp(arguments);
}
var propPool = new clsPropPool();



