/**
  * @return the only instance during current request.
  */
 public static function getInstance()
 {
     if (self::$_instance == NULL) {
         self::$_instance = new WebSoccer();
     }
     return self::$_instance;
 }