function cache()
{
	this.content={};
	
	this.save=function(name,value)
	{
		this.content[name]=value;
	};
	
	this.load=function(name)
	{
		return this.content[name];
	}
};
