1 function Sys$_Debug$_appendConsole(text) {
2 if ((typeof(Debug) !== 'undefined') && Debug.writeln) {
3 Debug.writeln(text);
4 }
5 if (window.console && window.console.log) {
6 window.console.log(text);
7 }
8 if (window.opera) {
9 window.opera.postError(text);
10 }
11 if (window.debugService) {
12 window.debugService.trace(text);
13 }
14 }