function clsSeries(args)
{
	this.seriesCode= args[0];
	this.seriesName= args[1];
	this.seriesPic = args[2];
	this.seriesPdf = args[3];
	//this.seriesCode = args[4];
}
function clsSeriesPool()
{
	this.Seriess = new Array();
}
clsSeriesPool.prototype.add = function()
{
	this.Seriess[this.Seriess.length] = new clsSeries(arguments);
}
var seriesPool = new clsSeriesPool();	