Index: trunk/FACT++/scripts/doc/Subscription.js
===================================================================
--- trunk/FACT++/scripts/doc/Subscription.js	(revision 15096)
+++ trunk/FACT++/scripts/doc/Subscription.js	(revision 15097)
@@ -23,4 +23,7 @@
  * too much.
  *
+ * Each subscription must exist only once, therefore the function-call
+ * can be used to check for an open subscription.  
+ *
  * @param {String} service
  *    Name of the DIM service to which a subscription should be made.
@@ -38,5 +41,7 @@
  *
  * @example
- *    var handle1 = new Subscription("MAGIC_WEATHER/DATA");
+ *    var handle1 = Subscription("MAGIC_WEATHER/DATA");
+ *    if (!handle1)
+ *        handle1 = new Subscription("MAGIC_WEATHER/DATA");
  *    var handle2 = new Subscription("TNG_WEATHER/DATA", function(evt) { console.out(JSON.stringify(evt)); });
  *    ...
