/*
  By Hangring
  #2008.11.04#
  ---
*/
var Debug = {
	Container : null,
	
	Trace : false,
	
	Show : function (info /* : Object */) {
		if (!this.Trace) return;
		
		var c = this.Container;
		if (!c) {
			c = this.Container = oNode.CreateNode('div');
			oNode.AddNode(c);
			CSS.AddClass(c, 'debug');
			
			c.innerHTML = '<div class="title">' + '='.Repeat(20) + ' Debug ' + '='.Repeat(20) + '</div>';
		}
		c.innerHTML += info + '<br />';
	}
};
