function clsCat(args)
{
	this.catCode= args[0];
	this.catName= args[1];
	this.catParent = args[2];
	this.seriesCode = args[3];
}
function clsCatPool()
{
	this.Cats = new Array();
}
clsCatPool.prototype.add = function()
{
	this.Cats[this.Cats.length] = new clsCat(arguments);
}
var catPool = new clsCatPool();

