newsi.HTML.Memoriser=function(o){
	this._memo;		
	this._id;
	if(!o.id){return false;}
	this._id = o.id;
	this._hide = o.hide;
	this._memo = newsi.gebid(o.id).innerHTML;
	return true;
};
	
newsi.HTML.Memoriser.prototype.revert=function(){
	if(!this._id){return false;}
	newsi.gebid(this._id).innerHTML = this._memo;
	if(this._hide){
		newsi.gebid(this._hide).style.display = 'none';
	}
}