/* WindowBox
 *
 *
 */

function WindowBox(ID)
{
	// Public variables
	this.Title = "";
	this.Content = "";

	this.Show = IEshowWindowBox;
	this.Hide = IEhideWindowBox;
	this.style = null;
	
	
	// Private variables
	this._divID = ID;
	this._isPainted = false;
	
	this._paint = IE_paintWindowBox;
}

function IEshowWindowBox()
{
	if (this._isPainted)
		document.all[this._divID].style.visibility = "visible";
	else
		this._paint();
}

function IEhideWindowBox()
{
	if (this._isPainted)
		document.all[this._divID].style.visibility = "hidden";
}

function IE_paintWindowBox()
{
	if (!this._isPainted)
	{
		document.write("<DIV class='window' ID='"+ this._divID +"'>");
		document.write("<DIV class='titlebar'>" + this.Title + "</DIV>");
		document.write("<DIV class='content'>" + this.Content + "</DIV>");
		document.write("</DIV>");
		
		this.style = document.all[this._divID].style;
		
		this._isPainted = true;
	}
}