/**
 * @author Acer OEM User
 */
function Cache()
{
	this.cache = new Object();
	this.add = function(pKey, pValue)
	{
		var lValueInCache;
		eval("this.cache." + pKey + " = new Array();");
		lValueInCache = eval("this.cache." + pKey);
		lValueInCache[0] = pValue;
	}
	this.get = function(pKey)
	{
		var lValueInCache;
		lValueInCache = eval("this.cache." + pKey);
		if (lValueInCache)
		{
			return lValueInCache[0];
		}
		else
		{
			return null;
		}
	}
	this.remove = function(pKey)
	{
		eval("this.cache." + pKey + " = null;");
	}
}