// Debug

//-------------------------------------------------------------
function Debug()
	{
	var panel;
	var textBox;
	}

//--------------------------------------------------------------
Debug.prototype.CreateWindow = function(vpos, hpos)
	{
	this.panel = new Panel("debug",vpos, hpos, 380, 340,"1px", "inset", "#000000", "#cccccc", null);
	//----------- TITLE BAR ----------------------------------------------------------
	var titlebar = this.panel.AddObject("TB_Debug", TYPE_TITLE_BAR,0,0,18,this.panel.width,"Debug Messages","","");
	titlebar.SetBkgndImage("images_ui/titlebars/liteblue.jpg");

	this.textBox = this.panel.AddObject("msgs", TYPE_TEXT_EDIT_BOX, 21, 2, 354, 334, "");
	this.textBox.SetTextSize(14);
	this.textBox.SetTextColor("black");

	this.panel.Show();
	}

//--------------------------------------------------------------
Debug.prototype.AddMsg = function(msg)
	{
	this.textBox.elem.value += msg;
	}


