// JavaScript Document

w = false;
createDebugWindow = function()
{
    w = window.open("","","width=600,height=200,scrollbars=1");   
}

trace = function(str)
{
    if(!w || w.closed) createDebugWindow();
    w.document.write("<pre>" + str + "</pre>");
    w.scrollTo(0, w.document.body.scrollHeight);
}
