/**
  * Returns the Neostrada class instance and creates it if needed
  */
 public static function GetInstance()
 {
     if (self::$Instance === NULL) {
         self::$Instance = new Neostrada();
     }
     return self::$Instance;
 }