function out(m)
{
	output = document.getElementById("output");
	if(!output)
	{
		output = document.createElement("div");
		output.setAttribute('id','output');
		output.setAttribute('class','outputConsole');
		output.setAttribute('style','width: 100%; height: 200px; overflow: auto');
		title = document.createElement("p");
		title.innerHTML = "<b>Output Debugger <br /></b>";
		output.appendChild(title);
		document.childNodes[1].appendChild(output);	
		
	}
	newP = document.createElement("p");
	newP.innerHTML = m;
	output.appendChild(newP);
}