/**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $detect = new Mobile_Detect();
     if ($detect->is("FireFox")) {
         $this->tpl_mainpage = "unsupported/firefox.tpl";
         // SC_Utils_Ex::sfDispSiteError ( FREE_ERROR_MSG, "", FALSE, "Firefox は対応していません", TRUE );
     }
 }
 /**
  * デストラクタ.
  *
  * @return void
  */
 function destroy()
 {
     parent::destroy();
 }
 /**
  * Page のプロセス.
  *
  * @return void
  */
 function process()
 {
     parent::process();
 }