public static function getInstance()
 {
     if (self::$oInstance == null) {
         self::$oInstance = new self();
     }
     return self::$oInstance;
 }