  /**
   * Listar todas as informacoes logadas pelo processo
   */
	var obj_debug = {
		/**
		 * Listar todas as informacoes logadas pelo processo
		 */
		debug: function( message ){
			if ( !this.debugWindow || this.debugWindow.closed ) {
				this.debugWindow = window.open( '', 'debugWindow', 'left=0,top=0,width=400,height=600,scrollbars=yes,status=no,resizable=yes,toolbar=no,menubar=no,location=no');
				this.debugWindow.document.bgColor = "#eeeeee";
				this.debugWindow.document.writeln( (new Date).getTime() + '|-----------new js exec<br/>' );
			}
			this.debugWindow.document.writeln( (new Date).getTime() + '| ' + message + '<br/>' );
			this.debugWindow.scroll( 0, 5000000 );
		}
	};
