/**
 * @author Acer OEM User
 */
function Cache()
{   
	this.cache = new Object();
	this.add = function(pKey, pValue)
	{
		eval("this.cache." + pKey + "='" + pValue + "';");
	}
	this.get = function(pKey)
	{
		return eval("this.cache." + pKey);
	}
	this.remove = function(pKey)
	{
		eval("this.cache." + pKey + "= null;");
	}
}