function clsApp(args)
{
	this.appCode= args[0];
	this.appName= args[1];
	this.appParent = args[2];
	this.seriesCodes = args[3];
	
}
function clsAppPool()
{
	this.Apps = new Array();
}
clsAppPool.prototype.add = function()
{
	this.Apps[this.Apps.length] = new clsApp(arguments);
}
var appPool = new clsAppPool();	
