/** * (c) 2008, Wacko-Wacko!
 * @author daclip
 */
function WDebug() {	var self = null;	var body = null;		this.msg = function(/* String */ text) {		self.document.write(text+"<br>\n");	}		var init = function() {		self = window.open();			}	init();		// End of class}
