HiderFrame = {
	_frame : [],

	Create : function()
	{
		if(!Html.Browser.IsIE6())
			return;

		return this._frame.length + 1;
	},

	_GetFrame : function(id)
	{
		if (!this._frame[id])
		{
			var d = document.createElement("IFRAME");
			d.id = "_frame" + id.toString();
			
			d.src = "about:blank";
			d.scrolling = "no";
			d.frameBorder = "0";
			d.style.position = "absolute";
			d.style.border = "none";
			d.style.display = "none";
			d.style.zIndex = 99;
			document.body.appendChild(d);			
			this._frame[id] = d;
		}
		return this._frame[id];
	},

	Show: function(id,offset)
	{
		if(!Html.Browser.IsIE6())
			return;
	
		var div = this._GetFrame(id);
		div.style.left = offset.Left;
		div.style.top = offset.Top;
		div.style.width = offset.Width;
		div.style.height = offset.Height;
		div.style.display = "";
	},

	Hide : function(id)
	{
		if(!Html.Browser.IsIE6())
			return;
				
		this._GetFrame(id).style.display = "none";
	}
};