/******************************************************************

Copyright © Global Knowledge Software LLC 2007.  All Rights Reserved.

This program is protected by U.S. and International Copyright and
Patent Laws.  Unauthorized duplication and/or distribution of this
program is strictly prohibited. Distribution and duplication of this
program are limited by license. If you do not currently have a valid
license from Global Knowledge for this program, any copying or
distribution of the program is unauthorized.  If you do have a current
license from Global Knowledge to utilize this program, your use is
strictly limited by the terms of that license.

Patent Pending.

******************************************************************/

var sounds=new Array();

function SoundObj(filelist)
{
	this.flist=filelist.split("+");
	this.fct=this.flist.length;
};

function Sound(id,filelist)
{
	sounds[id.substr(1)]=new SoundObj(filelist);
};

