// DEBUG functions

function debug_openwindows() {
    if (document.debug_w == null)
	document.debug_w = window.open('', '_black', 'width=800,height=600,left=75,top=17');

    d = document.debug_w;
    d.document.writeln("<body onunload=\"this.opener.document.debug_w = null;\">");
    return d;
}


function debug_props(obj, objName) {
    var d = debug_openwindows();

    for (var i in obj) {
	d.document.writeln(objName + "." + i + " = " + obj[i] + "<br />\n");
    }
    
    d.document.writeln("<hr />");
}

function debug_msg(msg) {
    var d = debug_openwindows();

    d.document.writeln(msg + "<br /><hr />");
}

function debug_alert(msg) {
    // alert(msg); 
}
