Index: trunk/FACT++/scripts/doc/_global_.js
===================================================================
--- trunk/FACT++/scripts/doc/_global_.js	(revision 18818)
+++ trunk/FACT++/scripts/doc/_global_.js	(revision 18819)
@@ -15,4 +15,6 @@
 /**
  * An associative array containing the user supplied arguments identical to arg.
+ * Positional arguments (arguments without value) are stored as 'n'="value"
+ * and can be accessed via $[n] with n being an integer.
  *
  * @static
@@ -21,5 +23,4 @@
  * @example
  *    var value = $['name'];
- *
  */
 _global_.$ = [];
@@ -27,4 +28,6 @@
 /**
  * An associative array containing the user supplied arguments identical to $.
+ * Positional arguments (arguments without value) are listed as 'n'="value"
+ * and can be accessed via arg[n] with n being an iteger.
  *
  * @static
@@ -32,6 +35,11 @@
  *
  * @example
+ *    // List all arguments
  *    for (var key in arg)
  *        console.out("arg["+key+"]="+arg[key]);
+ *
+ *    // List only positional arguments
+ *    for (var i=0; i<arg.length; i++)
+ *        console.out("arg["+i+"]="+arg[i]);
  */
 _global_.arg = [];
@@ -111,14 +119,4 @@
 
 /**
- *
- * @returns {String}
- *    A string with the JavaScript V8 version is returned.
- *
- * @static
- *
- */
-_global_.version = function() { /* [native code] */  }
-
-/**
  * Reads a file as a whole.
  *
