12345678910111213141516171819 |
- /********************************************************************************************************************************
- * Licensed Materials - Property of IBM *
- * *
- * IBM Cognos Products: AGS *
- * *
- * (C) Copyright IBM Corp. 2005, 2008 *
- * *
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. *
- *********************************************************************************************************************************/
- 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>");
- }
|