home *** CD-ROM | disk | FTP | other *** search
- /*
-
- Debugscript
-
- */
-
- debug = false;
-
- if (debug)
- { var geopend = true;
- var debugTimeoutID;
- debugWeergave = "top=0,left=0,"+"resizable=yes,status=no,scrollbars=yes";
- schermBreedte = 380; //(screen.availWidth - 640) / 2;
- schermHoogte = 500;
- debugVenster = window.open("", "Debugwindow", "width=" + schermBreedte + ",height=" + schermHoogte + debugWeergave);
- debugVenster.document.write("<html><body bgcolor=white><font face=helvetica size=2>")
- debugVenster.document.write('<p><b>Debugscript ingeladen vanuit:</b><br>');
- debugVenster.document.write(location.href + '<br>');
- focus();
- }
- function dbg(string)
- { if (debug)
- { if (!geopend)
- { debugVenster.document.open();
- debugVenster.document.write("<html><body bgcolor=white><font face=helvetica size=2>")
- geopend = true;
- }
- debugVenster.document.write(string)
- if (debugTimeoutID)
- debugVenster.clearTimeout(debugTimeoutID);
- debugTimeoutID = setTimeout("debugVenster.document.close(); geopend = false;", 2500);
- }
- }
-
- function schrijfDebugMelding(string)
- { debugVenster.document.write(string + '<br>');
- }
-