// JavaScript Document

function Output () {
	
	this.terminal = document.createElement('div');
	style(this.terminal);
	$E("body").appendChild(this.terminal);

	function style (targ) {
		targ.style.fontFamily = "Monaco";
		targ.style.fontSize = "10px";
		targ.style.background = "#000";
		targ.style.color = "#00f900";
		targ.style.padding = "10px";
		targ.style.width = "150px";
		targ.style.height = "100px";
		targ.style.overflow = "auto";
		targ.style.position = "absolute";
		targ.style.top = "0";
		targ.style.left = "0";
		targ.style.opacity = ".6"
	}
}

Output.prototype.trace = function (input) {
	this.terminal.innerHTML = '<div>'+ input + '</div>' + this.terminal.innerHTML;
}



