/**
  * Get an instance of the object
  *
  * @return CTCT_Process_Form
  */
 static function &getInstance()
 {
     if (empty(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }