﻿Object.extend(pandora.util.Html.prototype, pandora.util.storage.prototype);

var cHtmlMgr = Class.create();
	cHtmlMgr._instance_ = null;
	cHtmlMgr.getInstance = function(){
			if(this._instance_==null) this._instance_ = new pandora.util.Html();
			return this._instance_;
	};
	
var html = cHtmlMgr.getInstance();

