public static function &Instance()
 {
     if (self::$mrInstance == NULL) {
         $class_name = __CLASS__;
         self::$mrInstance = new $class_name();
     }
     return self::$mrInstance;
 }