// 属性画面制御クラス.
function AttributeDialog(width, height)
{
	this.width = width;
	this.height = height;
	
	// 表示.
	this.Show = function(html)
	{
		var attributewin = null;
		var obj = null;
		
		attributewin = document.getElementById("attributewin");
		
		obj = common.GetChildNode(attributewin, "console");
		obj.innerHTML = html;
		obj.scrollTop = 0;
		attributewin.style.visibility = "visible";
	}
}
