var debugWindow = null;

function dump(variable)
{
	var text = '';
	for (key in variable) {
		text += '[' + key + '] => ' + variable[key] + '\n';
	}
	createDebugWindow();
	debugWindow.document.body.innerHTML += '<pre>' + text + '</pre>';
}

function createDebugWindow()
{
	if (!debugWindow) {
		debugWindow = window.open('', '', 'scrollbars=yes,width=500,height=500,channelmode=no,directories=no,fullscreen=no,location=no,menubar=no,resizable=yes,titlebar=no,toolbar=no');
	} else if (!debugWindow.document) {
		debugWindow = window.open('', '', 'scrollbars=yes,width=500,height=500,channelmode=no,directories=no,fullscreen=no,location=no,menubar=no,resizable=yes,titlebar=no,toolbar=no');	
	}	
}

function echo(variable)
{
	createDebugWindow();
	debugWindow.document.body.innerHTML += '<pre>' + variable + '</pre>';
}
