12345678910111213141516171819 |
- function trace(msg) {
- var w = window.open("", "_trace_window_");
-
- w.document.writeln("<hr/>");
- w.document.writeln("<b>");
- w.document.writeln((new Date()).toString());
- w.document.writeln("</b>");
- w.document.writeln("<br/><pre>" + msg + "</pre>");
- }
|