Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/mdl_paygent.inc
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/mdl_paygent.inc	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/mdl_paygent.inc	(revision 15412)
@@ -0,0 +1,653 @@
+<?php
+/**
+ * 
+ * @copyright	2000-2006 LOCKON CO.,LTD. All Rights Reserved.
+ * @version	CVS: $Id: mdl_epsilon.inc 7162 2006-11-18 09:53:33Z kakinaka $
+ * @link		http://www.lockon.co.jp/
+ *
+ */
+$paygent_credit_php_dir = realpath(dirname( __FILE__));
+// include_path¤Ëmdl_paygent¤Î¥Ñ¥¹¤ò´Þ¤á¤ë
+ini_set('include_path', $paygent_credit_php_dir . PATH_SEPARATOR . ini_get('include_path'));
+
+$paygent_module_dir = "jp/co/ks/merchanttool/connectmodule/";
+
+// ¥â¥¸¥å¡¼¥ë¥Õ¥¡¥¤¥ë¤ÎÂ¸ºß¥Á¥§¥Ã¥¯
+if(!file_exists($paygent_credit_php_dir . "/" . $paygent_module_dir)) {
+	print("¥Ú¥¤¥¸¥§¥ó¥ÈÄó¶¡¥â¥¸¥å¡¼¥ë¤òÀßÃÖ¤·¤Æ¤¯¤À¤µ¤¤¡£");
+	exit;
+}
+
+// paygent¥â¥¸¥å¡¼¥ë¤ÎÆÉ¹þ
+include_once($paygent_module_dir . "entity/ResponseDataFactory.php");
+include_once($paygent_module_dir . "system/PaygentB2BModule.php");
+include_once($paygent_module_dir . "exception/PaygentB2BModuleConnectException.php");
+include_once($paygent_module_dir . "exception/PaygentB2BModuleException.php");
+
+// ¥Ú¥¤¥¸¥§¥ó¥È·èºÑ¤Î¥â¥¸¥å¡¼¥ëID¡Êdtb_module¤È¹ç¤ï¤»¤ë¡Ë
+define("MDL_PAYGENT_ID", 9);
+
+// ¥Ú¥¤¥¸¥§¥ó¥È¤Î³ÆÊ§¹þ¤ÎÂÐ±þÈÖ¹æ
+/*
+	ÅÅÊ¸¼ïÊÌ¤òÉ½¤¹¶èÊ¬
+	010¡§ATM·èºÑ¿½¹þ
+	020¡§¶°ÄÞ·èºÑµ°¿Ø
+	021¡§¶°ÄÞ·èºÑµ°¿Ø·¬Ý¾Ù
+	022¡§¶°ÄÞ·èºÑÇä¾å
+	023¡§¶°ÄÞ·èºÑÇä¾å·¬Ý¾Ù
+	024¡§¶°ÄÞ·èºÑ3Dµ°¿Ø
+	030¡§ºÝËÞÆ·èºÑ(ÈÖ¹æÊý¼°)¿½¹þ
+	040¡§ºÝËÞÆ·èºÑ(Ê§¹þÉ¼Êý¼°)¿½¹þ
+	050¡§¶ä¹ÔÈ¯Ä·èºÑ¿½¹þ
+	060¡§¶ä¹Ô¥Í¥Ã¥È·èºÑASP
+	090¡§·èºÑ¾ðÊó¾È²ñ
+ */
+define("PAYGENT_BANK", '060');
+define("PAYGENT_ATM", '010');
+define("PAYGENT_CONVENI", '030');
+define("PAYGENT_CREDIT", '020');
+// ¥Ð¥Ã¥Á¤Ç»ÈÍÑ¤¹¤ë¡£
+define("PAYGENT_REF", '090');
+
+// ¼õÃí»þ¤Î½é´ü¥¹¥Æ¡¼¥¿¥¹
+$arrInitStatus = array(
+	PAYGENT_CREDIT => ORDER_NEW,		// ¥¯¥ì¥¸¥Ã¥È¤Ï¿·µ¬¼õÉÕ
+	PAYGENT_ATM => ORDER_PAY_WAIT,		// ATM·èºÑ¤ÏÆþ¶âÂÔ¤Á
+	PAYGENT_CONVENI => ORDER_PAY_WAIT,	// ¥³¥ó¥Ó¥Ë¤ÏÆþ¶âÂÔ¤Á
+	PAYGENT_BANK => ORDER_NEW,			// ¶ä¹Ô¤Ï¿·µ¬¼õÉÕ
+);
+
+define ("CHARGE_MAX", 500000);
+define ("SEVEN_CHARGE_MAX", 300000);
+
+// ÅÅÊ¸¥Ð¡¼¥¸¥ç¥ó
+define ("TELEGRAM_VERSION", '1.0');
+
+//¥³¥ó¥Ó¥Ë¤Î¼ïÎà
+$arrConvenience = array(
+	'00C016' => '¥»¥¤¥³¡¼¥Þ¡¼¥È',
+	'00C002' => '¥í¡¼¥½¥ó',
+	'00C004' => '¥ß¥Ë¥¹¥È¥Ã¥×',
+	'00C005' => '¥Õ¥¡¥ß¥ê¡¼¥Þ¡¼¥È',
+	'00C006' => '¥µ¥ó¥¯¥¹',
+	'00C007' => '¥µ¡¼¥¯¥ëK',
+	'00C014' => '¥Ç¥¤¥ê¡¼¥ä¥Þ¥¶¥­',
+	'00C001' => '¥»¥Ö¥ó¥¤¥ì¥Ö¥ó'
+);
+	
+// ¥Í¥Ã¥È¥Ð¥ó¥¯¤Î¼ïÎà
+$arrNetBank = array(
+	'D005' => 'e-payment',
+	'D008' => '¥Í¥Ã¥È¿¶¹þEDI',
+	'D009' => 'One\'s ¥À¥¤¥ì¥¯¥È',
+	'D033' => '¥¸¥ã¥Ñ¥ó¥Í¥Ã¥È¶ä¹Ô',
+	'D036' => '¥¤¡¼¥Ð¥ó¥¯'	
+);
+	
+// ¥¯¥ì¥¸¥Ã¥ÈÊ¬³ä²ó¿ô
+$arrPaymentClass = array(
+	'10' => '°ì³çÊ§¤¤',
+	'61-2' => 'Ê¬³ä2²óÊ§¤¤',
+	'61-3' => 'Ê¬³ä3²óÊ§¤¤',
+	'61-6' => 'Ê¬³ä6²óÊ§¤¤',
+	'61-10' => 'Ê¬³ä10²óÊ§¤¤',
+	'61-15' => 'Ê¬³ä15²óÊ§¤¤',
+	'61-20' => 'Ê¬³ä20²óÊ§¤¤',
+	'80' => '¥ê¥ÜÊ§¤¤'
+);
+
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfGetPaygentShare
+ * ½èÍýÆâÍÆ	¡§¥Ú¥¤¥¸¥§¥ó¥È¾ðÊóÁ÷¿®¤Î¶¦ÄÌ½èÍý
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+function sfGetPaygentShare($telegram_kind, $order_id, $arrParam) {
+	
+	/** ¶¦ÄÌÅÅÊ¸ **/	
+	// ¥Þ¡¼¥Á¥ã¥ó¥ÈID
+	$arrSend['merchant_id'] = $arrParam['merchant_id'];
+	// ÀÜÂ³ID
+	$arrSend['connect_id'] = $arrParam['connect_id'];
+	// ÀÜÂ³¥Ñ¥¹¥ï¡¼¥É
+	$arrSend['connect_password'] = $arrParam['connect_password'];
+	// ÅÅÊ¸¼ïÊÌID
+	$arrSend['telegram_kind'] = $telegram_kind;
+	// ÅÅÊ¸¥Ð¡¼¥¸¥ç¥ó
+	$arrSend['telegram_version'] = TELEGRAM_VERSION;
+	// ¥Þ¡¼¥Á¥ã¥ó¥È¼è°úID
+	$arrSend['trading_id'] = $order_id;
+
+	return $arrSend;
+}
+	
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfSendPaygentCredit
+ * ½èÍýÆâÍÆ	¡§¥¯¥ì¥¸¥Ã¥È¾ðÊó¤ÎÁ÷¿®
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+function sfSendPaygentCredit($arrData, $arrInput, $uniqid) {
+// ÀÜÂ³¥â¥¸¥å¡¼¥ë¤Î¥¤¥ó¥¹¥¿¥ó¥¹¼èÆÀ (¥³¥ó¥¹¥È¥é¥¯¥¿)¤È½é´ü²½
+	$p = new PaygentB2BModule();
+	$p->init();
+	
+	//¡¡¥¯¥ì¥¸¥Ã¥ÈÍÑ¥Ñ¥é¥á¡¼¥¿¤Î¼èÆÀ
+	$arrPaymentDB = sfGetPaymentDB(MDL_PAYGENT_ID, "AND memo03 = 1");
+	$arrOtherParam = unserialize($arrPaymentDB[0]['other_param']);
+	
+	// ¶¦ÄÌ¥Ç¡¼¥¿¤Î¼èÆÀ
+	$arrSend = sfGetPaygentShare(PAYGENT_CREDIT, $arrData['order_id'], $arrPaymentDB[0]);
+	
+	/** ¸ÄÊÌÅÅÊ¸ **/
+	
+	// ·èºÑ¶â³Û
+	$arrSend['payment_amount'] = $arrData['payment_total'];
+	// ¥«¡¼¥ÉÈÖ¹æ
+	$arrSend['card_number'] = $arrInput['card_no01'].$arrInput['card_no02'].$arrInput['card_no03'].$arrInput['card_no04'];
+	// ¥«¡¼¥ÉÍ­¸ú´ü¸Â(MMYY)
+	$arrSend['card_valid_term'] = $arrInput['card_month'].$arrInput['card_year'];
+	// »ÙÊ§¤¤¶èÊ¬¡¢Ê¬³ä²ó¿ô¤Î¼èÆÀ
+	list($payment_class, $split_count) = split("-", $arrInput['payment_class']);
+		
+	// »ÙÊ§¤¤¶èÊ¬
+	/*
+	 * 10:1²ó
+	 * 23:¥Ü¡¼¥Ê¥¹1²ó
+	 * 61:Ê¬³ä
+	 * 80:¥ê¥Ü¥ë¥Ó¥ó¥°
+	 */
+	$arrSend['payment_class'] = $payment_class;
+	// Ê¬³ä²ó¿ô
+	$arrSend['split_count'] = $split_count;	
+	// 3D¥»¥­¥å¥¢ÉÞÍÜ¶èÊ¬
+	$arrSend['3dsecure_ryaku'] = '1';
+	
+	// ÅÅÊ¸¤ÎÁ÷ÉÕ
+	foreach($arrSend as $key => $val) {
+		$p->reqPut($key, $val);
+	}
+	
+	// ÅÅÊ¸¤ÎÁ÷¿®
+	$p->post();
+
+	// ±þÅú¤ò½èÍý
+	$arrRet = sfPaygentResponse(PAYGENT_CREDIT, $p, $uniqid);
+	
+	return $arrRet;
+}
+
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfSendPaygentConveni
+ * ½èÍýÆâÍÆ	¡§¥³¥ó¥Ó¥Ë¾ðÊó¤ÎÁ÷¿®
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+function sfSendPaygentConveni($arrData, $arrInput, $uniqid) {
+// ÀÜÂ³¥â¥¸¥å¡¼¥ë¤Î¥¤¥ó¥¹¥¿¥ó¥¹¼èÆÀ (¥³¥ó¥¹¥È¥é¥¯¥¿)¤È½é´ü²½
+	$p = new PaygentB2BModule();
+	$p->init();
+	
+	//¡¡¥³¥ó¥Ó¥ËÍÑ¥Ñ¥é¥á¡¼¥¿¤Î¼èÆÀ
+	$arrPaymentDB = sfGetPaymentDB(MDL_PAYGENT_ID, "AND memo03 = 2");
+	$arrOtherParam = unserialize($arrPaymentDB[0]['other_param']);
+	
+	// ¶¦ÄÌ¥Ç¡¼¥¿¤Î¼èÆÀ
+	$arrSend = sfGetPaygentShare(PAYGENT_CONVENI, $arrData['order_id'], $arrPaymentDB[0]);
+	
+	/** ¸ÄÊÌÅÅÊ¸ **/
+	
+	// ·èºÑ¶â³Û
+	$arrSend['payment_amount'] = $arrData['payment_total'];
+	// ÍøÍÑ¼ÔÀ«
+	$arrSend['customer_family_name'] = $arrInput['customer_family_name'];
+	// ÍøÍÑ¼ÔÌ¾
+	$arrSend['customer_name'] = $arrInput['customer_name'];	
+	// ÍøÍÑ¼ÔÀ«È¾³Ñ¥«¥Ê
+	$arrSend['customer_family_name_kana'] = mb_convert_kana($arrInput['customer_family_name_kana'],'k');
+	// ÍøÍÑ¼ÔÌ¾È¾³Ñ¥«¥Ê
+	$arrSend['customer_name_kana'] = mb_convert_kana($arrInput['customer_name_kana'],'k');
+	// ÍøÍÑ¼ÔÅÅÏÃÈÖ¹æ
+	$arrSend['customer_tel'] = $arrInput['customer_tel'];
+	// »ÙÊ§´ü¸ÂÆü
+	$arrSend['payment_limit_date'] = $arrOtherParam['payment_limit_date'];
+	// ¥³¥ó¥Ó¥Ë´ë¶È¥³¡¼¥É
+	$arrSend['cvs_company_id'] = $arrInput['cvs_company_id'];
+	// »ÙÊ§¼ïÊÌ
+	$arrSend['sales_type'] = '1';
+	
+	// ÅÅÊ¸¤ÎÁ÷ÉÕ
+	foreach($arrSend as $key => $val) {
+		// Shift-JIS¤Ë¥¨¥ó¥³¡¼¥É¤¹¤ëÉ¬Í×¤¢¤ê
+		$enc_val = mb_convert_encoding($val, "Shift-JIS", CHAR_CODE);		
+		$p->reqPut($key, $enc_val);
+	}
+	
+	// ÅÅÊ¸¤ÎÁ÷¿®
+	$p->post();
+
+	// ±þÅú¤ò½èÍý
+	$arrRet = sfPaygentResponse(PAYGENT_CONVENI, $p, $uniqid);
+		
+	return $arrRet;
+}
+
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfSendPaygentATM
+ * ½èÍýÆâÍÆ	¡§ATM·èºÑ¾ðÊó¤ÎÁ÷¿®
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+function sfSendPaygentATM($arrData, $arrInput, $uniqid) {
+// ÀÜÂ³¥â¥¸¥å¡¼¥ë¤Î¥¤¥ó¥¹¥¿¥ó¥¹¼èÆÀ (¥³¥ó¥¹¥È¥é¥¯¥¿)¤È½é´ü²½
+	$p = new PaygentB2BModule();
+	$p->init();
+	
+	//¡¡ATM·èºÑÍÑ¥Ñ¥é¥á¡¼¥¿¤Î¼èÆÀ
+	$arrPaymentDB = sfGetPaymentDB(MDL_PAYGENT_ID, "AND memo03 = 3");
+	$arrOtherParam = unserialize($arrPaymentDB[0]['other_param']);
+	
+	// ¶¦ÄÌ¥Ç¡¼¥¿¤Î¼èÆÀ
+	$arrSend = sfGetPaygentShare(PAYGENT_ATM, $arrData['order_id'], $arrPaymentDB[0]);
+	
+	
+	/** ¸ÄÊÌÅÅÊ¸ **/
+	
+	// ·èºÑ¶â³Û
+	$arrSend['payment_amount'] = $arrData['payment_total'];
+
+	// ÍøÍÑ¼ÔÀ«
+	$arrSend['customer_family_name'] = $arrInput['customer_family_name'];
+	// ÍøÍÑ¼ÔÌ¾
+	$arrSend['customer_name'] = $arrInput['customer_name'];	
+	// ÍøÍÑ¼ÔÀ«È¾³Ñ¥«¥Ê
+	$arrSend['customer_family_name_kana'] = mb_convert_kana($arrInput['customer_family_name_kana'],'k');
+	// ÍøÍÑ¼ÔÌ¾È¾³Ñ¥«¥Ê
+	$arrSend['customer_name_kana'] = mb_convert_kana($arrInput['customer_name_kana'],'k');
+	// ·èºÑÆâÍÆ
+	$arrSend['payment_detail'] = $arrOtherParam['payment_detail'];
+	// ·èºÑÆâÍÆÈ¾³Ñ¥«¥Ê
+	$arrSend['payment_detail_kana'] = mb_convert_kana($arrOtherParam['payment_detail'],'k');
+	// »ÙÊ§´ü¸ÂÆü
+	$arrSend['payment_limit_date'] = $arrOtherParam['payment_limit_date'];
+	
+	// ÅÅÊ¸¤ÎÁ÷ÉÕ
+	foreach($arrSend as $key => $val) {
+		// Shift-JIS¤Ë¥¨¥ó¥³¡¼¥É¤¹¤ëÉ¬Í×¤¢¤ê
+		$enc_val = mb_convert_encoding($val, "Shift-JIS", CHAR_CODE);		
+		$p->reqPut($key, $enc_val);
+	}
+	
+	// ÅÅÊ¸¤ÎÁ÷¿®
+	$p->post();
+	
+	// ±þÅú¤ò½èÍý
+	$arrRet = sfPaygentResponse(PAYGENT_ATM, $p, $uniqid);
+	
+	return $arrRet;
+}
+
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfSendPaygentBANK
+ * ½èÍýÆâÍÆ	¡§¶ä¹ÔNET·èºÑ¾ðÊó¤ÎÁ÷¿®
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+function sfSendPaygentBANK($arrData, $arrInput, $uniqid) {
+// ÀÜÂ³¥â¥¸¥å¡¼¥ë¤Î¥¤¥ó¥¹¥¿¥ó¥¹¼èÆÀ (¥³¥ó¥¹¥È¥é¥¯¥¿)¤È½é´ü²½
+	$p = new PaygentB2BModule();
+	$p->init();
+	
+	//¡¡¶ä¹ÔNETÍÑ¥Ñ¥é¥á¡¼¥¿¤Î¼èÆÀ
+	$arrPaymentDB = sfGetPaymentDB(MDL_PAYGENT_ID, "AND memo03 = 4");
+	$arrOtherParam = unserialize($arrPaymentDB[0]['other_param']);
+	
+	// ¶¦ÄÌ¥Ç¡¼¥¿¤Î¼èÆÀ
+	$arrSend = sfGetPaygentShare(PAYGENT_BANK, $arrData['order_id'], $arrPaymentDB[0]);
+
+	/** ¸ÄÊÌÅÅÊ¸ **/
+	
+	//$arrSend['bank_code'] = $arrInput['bank_code'];	
+	// ·èºÑ¶â³Û
+	$arrSend['amount'] = $arrData['payment_total'];
+	// ÀÁµáÆâÍÆ¥«¥Ê
+	$arrSend['claim_kana'] = $arrOtherParam['claim_kana'];
+	// ÀÁµáÆâÍÆ´Á»ú
+	$arrSend['claim_kanji'] = $arrOtherParam['claim_kanji'];	
+	// ÍøÍÑ¼ÔÀ«
+	$arrSend['customer_family_name'] = $arrInput['customer_family_name'];
+	// ÍøÍÑ¼ÔÌ¾
+	$arrSend['customer_name'] = $arrInput['customer_name'];	
+	// ÍøÍÑ¼ÔÀ«È¾³Ñ¥«¥Ê
+	$arrSend['customer_family_name_kana'] = mb_convert_kana($arrInput['customer_family_name_kana'],'k');
+	// ÍøÍÑ¼ÔÌ¾È¾³Ñ¥«¥Ê
+	$arrSend['customer_name_kana'] = mb_convert_kana($arrInput['customer_name_kana'],'k');
+	// PC-Mobile¶èÊ¬
+	/*
+	 * 0:PC
+	 * 1:docomo	
+	 * 2:au
+	 * 3:softbank
+	 */
+	$arrSend['pc_mobile_type'] = '0';
+	// Å¹ÊÞÌ¾
+	$arrSend['merchant_name'] = $arrOtherParam['claim_kanji'];	
+	// ´°Î»¸å¤ÎÌá¤ê£Õ£Ò£Ì 
+	$arrSend['return_url'] = SSL_URL . "shopping/load_payment_module.php";
+	// Ìá¤ê¥Ü¥¿¥ó£Õ£Ò£Ì 
+	$arrSend['stop_return_url'] = SSL_URL . "shopping/load_payment_module.php";
+	
+	// ¥³¥Ô¡¼¥é¥¤¥È	
+	$arrSend['copy_right'] = $arrOtherParam['copy_right'];
+	// ¼«Í³¥á¥âÍó
+	$arrSend['free_memo'] = $arrOtherParam['free_memo'];
+	// »ÙÊ§´ü´Ö(0DDhhmm)
+	$arrSend['asp_payment_term'] = sprintf("0%02d0000", $arrOtherParam['asp_payment_term']);
+	
+	// ÅÅÊ¸¤ÎÁ÷ÉÕ
+	foreach($arrSend as $key => $val) {
+		// Shift-JIS¤Ë¥¨¥ó¥³¡¼¥É¤¹¤ëÉ¬Í×¤¢¤ê
+		$enc_val = mb_convert_encoding($val, "Shift-JIS", CHAR_CODE);
+		$p->reqPut($key, $enc_val);
+	}
+	
+	// ÅÅÊ¸¤ÎÁ÷¿®
+	$p->post();
+	
+	// ±þÅú¤ò½èÍý
+	$arrRet = sfPaygentResponse(PAYGENT_BANK, $p, $uniqid);
+	
+	return $arrRet;
+}
+
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfPaygentResponse
+ * ½èÍýÆâÍÆ	¡§±þÅú¤ò½èÍý¤¹¤ë
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+
+function sfPaygentResponse($telegram_kind, $objPaygent, $uniqid) {
+	global $arrConvenience;
+	global $arrInitStatus;
+	
+	// ½èÍý·ë²Ì¼èÆÀ¡Ê¶¦ÄÌ¡Ë
+	$resultStatus = $objPaygent->getResultStatus(); # ½èÍý·ë²Ì 0=Àµ¾ï½ªÎ», 1=°Û¾ï½ªÎ»
+	$responseCode = $objPaygent->getResponseCode(); # °Û¾ï½ªÎ»»þ¡¢¥ì¥¹¥Ý¥ó¥¹¥³¡¼¥É¤¬¼èÆÀ¤Ç¤­¤ë
+	$responseDetail = $objPaygent->getResponseDetail(); # °Û¾ï½ªÎ»»þ¡¢¥ì¥¹¥Ý¥ó¥¹¾ÜºÙ¤¬¼èÆÀ¤Ç¤­¤ë
+
+	// Shift-JIS¤Ç±þÅú¤¬¤¢¤ë¤Î¤Ç¡¢¥¨¥ó¥³¡¼¥É¤¹¤ë¡£
+	$responseDetail = mb_convert_encoding($responseDetail, CHAR_CODE, "Shift-JIS");	
+		
+	
+	// ¥ì¥¹¥Ý¥ó¥¹¤Î¼èÆÀ
+	while($objPaygent->hasResNext()) {
+		# ¥Ç¡¼¥¿¤¬Â¸ºß¤¹¤ë¸Â¤ê¡¢¼èÆÀ
+		$arrRes[] = $objPaygent->resNext(); # Í×µá·ë²Ì¼èÆÀ
+	}
+	
+	// ·èºÑËè¤Ë°Û¤Ê¤ë½èÍý
+	switch($telegram_kind) {
+	// ¥¯¥ì¥¸¥Ã¥È·èºÑ¤Î¾ì¹ç
+	case PAYGENT_CREDIT:
+		// ½é´ü¥¹¥Æ¡¼¥¿¥¹¤òÀßÄê¤¹¤ë¡£
+		$arrVal["status"] = $arrInitStatus[PAYGENT_CREDIT];
+		// ¶õ¤ÎÇÛÎó¤ò³ÊÇ¼¤·¤Æ¤ª¤¯
+		$arrVal["memo02"] = serialize(array());		
+		break;
+	// ¥³¥ó¥Ó¥Ë·èºÑ¤Î¾ì¹ç
+	case PAYGENT_CONVENI:		
+		// ¥¿¥¤¥È¥ë¤òÀßÄê¤¹¤ë
+		$arrMemo['title'] = sfSetConvMSG("¥³¥ó¥Ó¥Ë¤ª»ÙÊ§¾ðÊó", true);	
+		//Ê§¹þÉ¼URL(PC)
+		if($arrRes[0]['receipt_print_url'] != "") {
+			$arrMemo['receipt_print_url'] = sfSetConvMSG("Ê§¹þÉ¼URL", $arrRes[0]['receipt_print_url']);
+		}
+		//Ê§¹þÉ¼ÈÖ¹æ
+		$arrMemo['receipt_number'] = sfSetConvMSG("Ê§¹þÉ¼ÈÖ¹æ", $arrRes[0]['receipt_number']);
+		$arrCVS = split("-", $arrRes[0]['usable_cvs_company_id']);
+		foreach($arrCVS as $val) {
+			if($cvsLine != "") {
+				$cvsLine.= ",".$arrConvenience[$val];				
+			} else {
+				$cvsLine = $arrConvenience[$val];
+			}
+		}
+		//ÂÐ¾Ý¥³¥ó¥Ó¥Ë
+		$arrMemo['usable_cvs_company_id'] = sfSetConvMSG("¤ª»ÙÊ§²ÄÇ½¤Ê¥³¥ó¥Ó¥Ë", $cvsLine);			
+		// »ÙÊ§´üÆü
+		$arrMemo['payment_limit_date'] = sfSetConvMSG("¤ª»ÙÊ§´üÆü", date("YÇ¯m·îdÆü", strtotime($arrRes[0]['payment_limit_date'])));
+		// ¼õÃí¥Æ¡¼¥Ö¥ë¤ËÊÝÂ¸
+		$arrVal["memo02"] = serialize($arrMemo);
+		// ½é´ü¥¹¥Æ¡¼¥¿¥¹¤òÀßÄê¤¹¤ë¡£
+		$arrVal["status"] = $arrInitStatus[PAYGENT_CONVENI];		
+		break;
+	// ATM·èºÑ¤Î¾ì¹ç
+	case PAYGENT_ATM:
+		// ¥¿¥¤¥È¥ë¤òÀßÄê¤¹¤ë
+		$arrMemo['title'] = sfSetConvMSG("ATM¤ª»ÙÊ§¾ðÊó", true);	
+		$arrMemo['pay_center_number'] = sfSetConvMSG("¼ýÇ¼µ¡´ØÈÖ¹æ", $arrRes[0]['pay_center_number']);
+		$arrMemo['customer_number'] = sfSetConvMSG("¤ªµÒÍÍÈÖ¹æ", $arrRes[0]['customer_number']);
+		$arrMemo['conf_number'] = sfSetConvMSG("³ÎÇ§ÈÖ¹æ", $arrRes[0]['pay_center_number']);
+		// »ÙÊ§´üÆü
+		$arrMemo['payment_limit_date'] = sfSetConvMSG("¤ª»ÙÊ§´üÆü", date("YÇ¯m·îdÆü", strtotime($arrRes[0]['payment_limit_date'])));
+		// ¼õÃí¥Æ¡¼¥Ö¥ë¤ËÊÝÂ¸
+		$arrVal["memo02"] = serialize($arrMemo);
+		// ½é´ü¥¹¥Æ¡¼¥¿¥¹¤òÀßÄê¤¹¤ë¡£
+		$arrVal["status"] = $arrInitStatus[PAYGENT_ATM];		
+		break;
+	// ¶ä¹Ô¥Í¥Ã¥È¤Î¾ì¹ç
+	case PAYGENT_BANK:
+		// ½é´ü¥¹¥Æ¡¼¥¿¥¹¤òÀßÄê¤¹¤ë¡£
+		$arrVal["status"] = $arrInitStatus[PAYGENT_BANK];
+		// ¶õ¤ÎÇÛÎó¤ò³ÊÇ¼¤·¤Æ¤ª¤¯
+		$arrVal["memo02"] = serialize(array());
+		break;
+	default:
+		break;
+	}
+	
+	// ¼õÃí¥Æ¡¼¥Ö¥ë¤Ëµ­Ï¿¤¹¤ë
+	$arrVal["memo01"] = MDL_PAYGENT_ID;		// ½èÍý·ë²Ì
+		
+	// memo02¤Ï¡¢»ÙÊ§¾ðÊó¤ò³ÊÇ¼¤¹¤ë¡£
+	$arrVal["memo03"] = $resultStatus;		// ½èÍý·ë²Ì
+	$arrVal["memo04"] = $responseCode;		// ¥ì¥¹¥Ý¥ó¥¹¥³¡¼¥É
+	$arrVal["memo05"] = $responseDetail;	// ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸
+	$arrVal["memo06"] = $arrRes[0]['payment_id'];		// ¾µÇ§ÈÖ¹æ
+
+	// ¼õÃí°ì»þ¥Æ¡¼¥Ö¥ë¤Ë¹¹¿·
+	sfRegistTempOrder($uniqid, $arrVal);
+	
+	// ¾µÇ§ÈÖ¹æ¤È¥á¥Ã¥»¡¼¥¸¤òÊÖ¤¹
+	return $arrRes[0];
+}
+
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfSetConvMSG
+ * ½èÍýÆâÍÆ	¡§¥³¥ó¥Ó¥Ë¾ðÊóÉ½¼¨ÍÑ
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+function sfSetConvMSG($name, $value){
+	return array("name" => $name, "value" => $value);
+}
+
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfPaygentDisp
+ * ½èÍýÆâÍÆ	¡§¶¦ÄÌ¤ÎÉ½¼¨½èÍý
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+function sfPaygentDisp($objPage, $payment_id) {
+	$objQuery = new SC_Query();
+	// »ÙÊ§¤¤ÊýË¡¤ÎÀâÌÀ²èÁü¤ò¼èÆÀ¤¹¤ë¡£
+	$arrRet = $objQuery->select("payment_method, payment_image", "dtb_payment", "payment_id = ?", array($payment_id));
+	$objPage->tpl_payment_method = $arrRet[0]['payment_method'];
+	$objPage->tpl_payment_image = $arrRet[0]['payment_image'];
+	return $objPage;
+}
+
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfGetPaymentDB
+ * ½èÍýÆâÍÆ	¡§É¬Í×¤Ê¥Ç¡¼¥¿¤ò¼èÆÀ¤¹¤ë¡£
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+function sfGetPaymentDB($module_id, $where = "", $arrWhereVal = array()){
+	$objQuery = new SC_Query();
+		
+	$arrVal = array($module_id);
+	$arrVal = array_merge($arrVal, $arrWhereVal);
+	
+	$arrRet = array();
+	$sql = "SELECT 
+				module_id, 
+				memo01 as merchant_id, 
+				memo02 as connect_id, 
+				memo03 as payment,
+				memo04 as connect_password, 
+				memo05 as other_param
+			FROM dtb_payment WHERE module_id = ? " . $where;
+	$arrRet = $objQuery->getall($sql, $arrVal);
+
+	return $arrRet;
+}
+
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfPaygentBatch
+ * ½èÍýÆâÍÆ	¡§Æþ¶â¥¹¥Æ¡¼¥¿¥¹³ÎÇ§¥Ð¥Ã¥Á
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+function sfPaygentBatch() {
+	$objQuery = new SC_Query();
+	
+	// ÀÜÂ³¥â¥¸¥å¡¼¥ë¤Î¥¤¥ó¥¹¥¿¥ó¥¹¼èÆÀ (¥³¥ó¥¹¥È¥é¥¯¥¿)¤È½é´ü²½
+	$objPaygent = new PaygentB2BModule();
+	$objPaygent->init();
+	
+	//¡¡ÀßÄê¥Ñ¥é¥á¡¼¥¿¤Î¼èÆÀ
+	$arrPaymentDB = sfGetPaymentDB(MDL_PAYGENT_ID);
+
+	$where = "memo01 = ? AND status = ?";
+	$arrOrder = $objQuery->select("order_id", "dtb_order", $where, array(MDL_PAYGENT_ID, ORDER_PAY_WAIT));
+	
+	// ¶¦ÄÌ¥Ç¡¼¥¿¤Î¼èÆÀ
+	$arrSend = sfGetPaygentShare(PAYGENT_REF, 0, $arrPaymentDB[0]);
+	
+	for($i = 0; $i < count($arrOrder); $i++) {
+		$arrRet = sfUpdatePaymentStatus($objPaygent, $arrOrder[$i]['order_id'], $arrSend);
+	}
+		
+	return $arrRet;
+}
+
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfPaygentTest
+ * ½èÍýÆâÍÆ	¡§ÀÜÂ³¥Æ¥¹¥È
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+function sfPaygentTest($arrParam) {
+	$objQuery = new SC_Query();
+	
+	// ÀÜÂ³¥â¥¸¥å¡¼¥ë¤Î¥¤¥ó¥¹¥¿¥ó¥¹¼èÆÀ (¥³¥ó¥¹¥È¥é¥¯¥¿)¤È½é´ü²½
+	$objPaygent = new PaygentB2BModule();
+	$objPaygent->init();
+		
+	// ¶¦ÄÌ¥Ç¡¼¥¿¤Î¼èÆÀ
+	$arrSend = sfGetPaygentShare(PAYGENT_REF, '0', $arrParam);
+
+	// ÅÅÊ¸¤ÎÁ÷ÉÕ
+	foreach($arrSend as $key => $val) {
+		$objPaygent->reqPut($key, $val);
+	}
+	// ÅÅÊ¸¤ÎÁ÷¿®
+	$objPaygent->post();
+	
+	// ½èÍý·ë²Ì¼èÆÀ¡Ê¶¦ÄÌ¡Ë
+	$resultStatus = $objPaygent->getResultStatus(); # ½èÍý·ë²Ì 0=Àµ¾ï½ªÎ», 1=°Û¾ï½ªÎ»
+			
+	if($resultStatus == 0) {
+		return true;
+	} else {
+		return false;
+	}
+}
+
+/**************************************************************************************************************
+ * ´Ø¿ôÌ¾	¡§sfCheckPaymentStatus
+ * ½èÍýÆâÍÆ	¡§Æþ¶â¥¹¥Æ¡¼¥¿¥¹³ÎÇ§¥Ð¥Ã¥Á
+ * °ú¿ô1	¡§
+ * °ú¿ô2	¡§
+ * °ú¿ô3	¡§
+ * Ìá¤êÃÍ	¡§¼èÆÀ·ë²Ì
+ **************************************************************************************************************/
+function sfUpdatePaymentStatus($objPaygent, $order_id, $arrSend) {
+	$objQuery = new SC_Query();
+		
+	// ¥Þ¡¼¥Á¥ã¥ó¥È¼è°úID¤ÎÆþ¤ìÂØ¤¨
+	$arrSend['trading_id'] = $order_id;
+	
+	// ÅÅÊ¸¤ÎÁ÷ÉÕ
+	foreach($arrSend as $key => $val) {
+		$objPaygent->reqPut($key, $val);
+	}
+	// ÅÅÊ¸¤ÎÁ÷¿®
+	$objPaygent->post();
+	
+	// ¥ì¥¹¥Ý¥ó¥¹¤Î¼èÆÀ
+	while($objPaygent->hasResNext()) {
+		# ¥Ç¡¼¥¿¤¬Â¸ºß¤¹¤ë¸Â¤ê¡¢¼èÆÀ
+		$arrRes[] = $objPaygent->resNext(); # Í×µá·ë²Ì¼èÆÀ
+	}
+	
+	foreach($arrRes[0] as $key => $val) {
+		// Shift-JIS¤Ç±þÅú¤¬¤¢¤ë¤Î¤Ç¡¢¥¨¥ó¥³¡¼¥É¤¹¤ë¡£
+		$arrRes[0][$key] = mb_convert_encoding($val, CHAR_CODE, "Shift-JIS");	
+	}
+	
+	// »ÙÊ§¥¹¥Æ¡¼¥¿¥¹¤Î¹¹¿·
+	/*
+	 * 10:¿½¹þºÑ
+	 * 12:»ÙÊ§´ü¸ÂÀÚ¤ì
+	 * 15:¿½¹þÃæÃÇ
+	 * 40:¾Ã¹þºÑ
+	 * 43:Â®Êó¸¡ÃÎºÑ
+	 * 61:Â®Êó¼è¾ÃºÑ
+	 * etc 
+	 */
+	if($arrRes[0][payment_status] == '40') {
+		$arrVal['status'] = ORDER_PRE_END;
+	} 
+	
+	$arrVal['memo07'] = $arrRes[0][payment_status];
+	$objQuery->update("dtb_order", $arrVal, "order_id = ?", array($order_id));
+	
+	return $arrRes[0];
+}
+
+?>
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_atm.php
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_atm.php	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_atm.php	(revision 15412)
@@ -0,0 +1,110 @@
+<?php
+/*
+ * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ */
+require_once(MODULE_PATH . "mdl_paygent/mdl_paygent.inc");
+
+class LC_Page {
+	function LC_Page() {
+		/** É¬¤º»ØÄê¤¹¤ë **/
+		$this->tpl_mainpage = MODULE_PATH . 'mdl_paygent/paygent_atm.tpl';		// ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
+		/*
+		 session_start»þ¤Îno-cache¥Ø¥Ã¥À¡¼¤òÍÞÀ©¤¹¤ë¤³¤È¤Ç
+		 ¡ÖÌá¤ë¡×¥Ü¥¿¥ó»ÈÍÑ»þ¤ÎÍ­¸ú´ü¸ÂÀÚ¤ìÉ½¼¨¤òÍÞÀ©¤¹¤ë¡£
+		 private-no-expire:¥¯¥é¥¤¥¢¥ó¥È¤Î¥­¥ã¥Ã¥·¥å¤òµö²Ä¤¹¤ë¡£
+		*/
+		session_cache_limiter('private-no-expire');		
+	}
+}
+
+$objPage = new LC_Page();
+$objView = new SC_SiteView();
+$objCampaignSess = new SC_CampaignSession();
+$objSiteInfo = $objView->objSiteInfo;
+$arrInfo = $objSiteInfo->data;
+
+if (GC_MobileUserAgent::isMobile()) {
+	sfDispSiteError(FREE_ERROR_MSG, "", false, "ATM·èºÑ¤Ï¡¢¤´»ÈÍÑ¤Îµ¡¼ï¤Ë¤ÏÂÐ±þ¤·¤Æ¤ª¤ê¤Þ¤»¤ó¡£", true);
+	exit;
+}
+
+// ¥Ñ¥é¥á¡¼¥¿´ÉÍý¥¯¥é¥¹
+$objFormParam = new SC_FormParam();
+
+// °ì»þ¼õÃí¥Æ¡¼¥Ö¥ë¤ÎÆÉ¹þ
+$arrData = sfGetOrderTemp($uniqid);
+
+// ¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½
+lfInitParam($arrData);
+// POSTÃÍ¤Î¼èÆÀ
+$objFormParam->setParam($_POST);
+
+// ¥«¡¼¥È½¸·×½èÍý
+$objPage = sfTotalCart($objPage, $objCartSess, $arrInfo);
+
+// ¥«¡¼¥È½¸·×¤ò¸µ¤ËºÇ½ª·×»»
+$arrData = sfTotalConfirm($arrData, $objPage, $objCartSess, $arrInfo);
+
+switch($_POST['mode']) {
+// Á°¤Î¥Ú¡¼¥¸¤ËÌá¤ë
+case 'return':
+	// Àµ¾ï¤Ê¿ä°Ü¤Ç¤¢¤ë¤³¤È¤òµ­Ï¿¤·¤Æ¤ª¤¯
+	$objSiteSess->setRegistFlag();
+	header("Location: " . URL_SHOP_CONFIRM);
+	exit;
+	break;
+// ¼¡¤Ø
+case 'next':
+	// ÆþÎÏÃÍ¤ÎÊÑ´¹
+	$objFormParam->convParam();
+	$objPage->arrErr = lfCheckError($arrRet);
+	// ÆþÎÏ¥¨¥é¡¼¤Ê¤·¤Î¾ì¹ç
+	if(count($objPage->arrErr) == 0) {
+		 // ÆþÎÏ¥Ç¡¼¥¿¤Î¼èÆÀ¤ò¹Ô¤¦
+    	$arrInput = $objFormParam->getHashArray();
+		// ¥¯¥ì¥¸¥Ã¥ÈÅÅÊ¸Á÷¿®
+		$arrRet = sfSendPaygentATM($arrData, $arrInput, $uniqid);		
+		
+		// À®¸ù
+		if($arrRet['payment_id'] != "") {
+            // Àµ¾ï¤ËÅÐÏ¿¤µ¤ì¤¿¤³¤È¤òµ­Ï¿¤·¤Æ¤ª¤¯
+            $objSiteSess->setRegistFlag();
+            header("Location: " . URL_SHOP_COMPLETE);
+		} else {
+			// ¼ºÇÔ
+			$objPage->tpl_error = "Ç§¾Ú¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£¤ª¼ê¿ô¤Ç¤¹¤¬ÆþÎÏÆâÍÆ¤ò¤´³ÎÇ§¤¯¤À¤µ¤¤¡£";
+		}
+	}
+	break;
+}
+
+// ¶¦ÄÌ¤ÎÉ½¼¨½àÈ÷
+$objPage = sfPaygentDisp($objPage, $payment_id);
+
+$objPage->arrForm = $objFormParam->getFormParamList();
+$objView->assignobj($objPage);
+// ¥Õ¥ì¡¼¥à¤òÁªÂò(¥­¥ã¥ó¥Ú¡¼¥ó¥Ú¡¼¥¸¤«¤éÁ«°Ü¤Ê¤éÊÑ¹¹)
+$objCampaignSess->pageView($objView);
+//-------------------------------------------------------------------------------------------------------
+/* ¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½ */
+function lfInitParam($arrData) {
+	global $objFormParam;
+	$objFormParam->addParam("ÍøÍÑ¼ÔÀ«", "customer_family_name", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_name01']);
+	$objFormParam->addParam("ÍøÍÑ¼ÔÌ¾", "customer_name", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_name02']);
+	$objFormParam->addParam("ÍøÍÑ¼ÔÀ«¥«¥Ê", "customer_family_name_kana", STEXT_LEN, "CKVa", array("EXIST_CHECK", "KANA_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_kana01']);
+	$objFormParam->addParam("ÍøÍÑ¼ÔÌ¾¥«¥Ê", "customer_name_kana", STEXT_LEN, "CKVa", array("EXIST_CHECK", "KANA_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_kana02']);
+}
+
+/* ÆþÎÏÆâÍÆ¤Î¥Á¥§¥Ã¥¯ */
+function lfCheckError() {
+	global $objFormParam;
+	// ÆþÎÏ¥Ç¡¼¥¿¤òÅÏ¤¹¡£
+	$arrRet =  $objFormParam->getHashArray();
+	$objErr = new SC_CheckError($arrRet);
+	$objErr->arrErr = $objFormParam->checkError();
+	
+	return $objErr->arrErr;
+}
+?>
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_batch.php
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_batch.php	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_batch.php	(revision 15412)
@@ -0,0 +1,14 @@
+<?php
+/*
+ * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ */
+$PAYGENT_BATCH_DIR = realpath(dirname( __FILE__));
+require_once($PAYGENT_BATCH_DIR . "mdl_paygent.inc");
+
+sfPaygentBatch();
+
+print("OK");
+
+?>
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_conveni.php
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_conveni.php	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_conveni.php	(revision 15412)
@@ -0,0 +1,113 @@
+<?php
+/*
+ * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ */
+require_once(MODULE_PATH . "mdl_paygent/mdl_paygent.inc");
+
+class LC_Page {
+	function LC_Page() {
+		/** É¬¤º»ØÄê¤¹¤ë **/
+		$this->tpl_mainpage = MODULE_PATH . 'mdl_paygent/paygent_conveni.tpl';		// ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
+		/*
+		 session_start»þ¤Îno-cache¥Ø¥Ã¥À¡¼¤òÍÞÀ©¤¹¤ë¤³¤È¤Ç
+		 ¡ÖÌá¤ë¡×¥Ü¥¿¥ó»ÈÍÑ»þ¤ÎÍ­¸ú´ü¸ÂÀÚ¤ìÉ½¼¨¤òÍÞÀ©¤¹¤ë¡£
+		 private-no-expire:¥¯¥é¥¤¥¢¥ó¥È¤Î¥­¥ã¥Ã¥·¥å¤òµö²Ä¤¹¤ë¡£
+		*/
+		session_cache_limiter('private-no-expire');		
+	}
+}
+
+$objPage = new LC_Page();
+$objView = new SC_SiteView();
+$objCampaignSess = new SC_CampaignSession();
+$objSiteInfo = $objView->objSiteInfo;
+$arrInfo = $objSiteInfo->data;
+// ¥Ñ¥é¥á¡¼¥¿´ÉÍý¥¯¥é¥¹
+$objFormParam = new SC_FormParam();
+
+if (GC_MobileUserAgent::isMobile()) {
+	sfDispSiteError(FREE_ERROR_MSG, "", false, "¥³¥ó¥Ó¥Ë·èºÑ¤Ï¡¢¤´»ÈÍÑ¤Îµ¡¼ï¤Ë¤ÏÂÐ±þ¤·¤Æ¤ª¤ê¤Þ¤»¤ó¡£", true);
+	exit;
+}
+
+// °ì»þ¼õÃí¥Æ¡¼¥Ö¥ë¤ÎÆÉ¹þ
+$arrData = sfGetOrderTemp($uniqid);
+
+// ¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½
+lfInitParam($arrData);
+// POSTÃÍ¤Î¼èÆÀ
+$objFormParam->setParam($_POST);
+
+// ¥«¡¼¥È½¸·×½èÍý
+$objPage = sfTotalCart($objPage, $objCartSess, $arrInfo);
+
+// ¥«¡¼¥È½¸·×¤ò¸µ¤ËºÇ½ª·×»»
+$arrData = sfTotalConfirm($arrData, $objPage, $objCartSess, $arrInfo);
+
+switch($_POST['mode']) {
+// Á°¤Î¥Ú¡¼¥¸¤ËÌá¤ë
+case 'return':
+	// Àµ¾ï¤Ê¿ä°Ü¤Ç¤¢¤ë¤³¤È¤òµ­Ï¿¤·¤Æ¤ª¤¯
+	$objSiteSess->setRegistFlag();
+	header("Location: " . URL_SHOP_CONFIRM);
+	exit;
+	break;
+// ¼¡¤Ø
+case 'next':
+	// ÆþÎÏÃÍ¤ÎÊÑ´¹
+	$objFormParam->convParam();
+	$objPage->arrErr = lfCheckError($arrRet);
+	// ÆþÎÏ¥¨¥é¡¼¤Ê¤·¤Î¾ì¹ç
+	if(count($objPage->arrErr) == 0) {
+		 // ÆþÎÏ¥Ç¡¼¥¿¤Î¼èÆÀ¤ò¹Ô¤¦
+    	$arrInput = $objFormParam->getHashArray();
+		// ¥¯¥ì¥¸¥Ã¥ÈÅÅÊ¸Á÷¿®
+		$arrRet = sfSendPaygentConveni($arrData, $arrInput, $uniqid);		
+		
+		// À®¸ù
+		if($arrRet['payment_id'] != "") {
+            // Àµ¾ï¤ËÅÐÏ¿¤µ¤ì¤¿¤³¤È¤òµ­Ï¿¤·¤Æ¤ª¤¯
+            $objSiteSess->setRegistFlag();
+            header("Location: " . URL_SHOP_COMPLETE);
+		} else {
+			// ¼ºÇÔ
+			$objPage->tpl_error = "Ç§¾Ú¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£¤ª¼ê¿ô¤Ç¤¹¤¬ÆþÎÏÆâÍÆ¤ò¤´³ÎÇ§¤¯¤À¤µ¤¤¡£";
+		}
+	}
+	break;
+}
+
+
+// ¶¦ÄÌ¤ÎÉ½¼¨½àÈ÷
+$objPage = sfPaygentDisp($objPage, $payment_id);
+
+$objPage->arrConvenience = $arrConvenience;
+$objPage->arrForm = $objFormParam->getFormParamList();
+$objView->assignobj($objPage);
+// ¥Õ¥ì¡¼¥à¤òÁªÂò(¥­¥ã¥ó¥Ú¡¼¥ó¥Ú¡¼¥¸¤«¤éÁ«°Ü¤Ê¤éÊÑ¹¹)
+$objCampaignSess->pageView($objView);
+//-------------------------------------------------------------------------------------------------------
+/* ¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½ */
+function lfInitParam($arrData) {
+	global $objFormParam;
+	$objFormParam->addParam("¥³¥ó¥Ó¥Ë", "cvs_company_id", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK"));	
+	$objFormParam->addParam("ÍøÍÑ¼ÔÀ«", "customer_family_name", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_name01']);
+	$objFormParam->addParam("ÍøÍÑ¼ÔÌ¾", "customer_name", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_name02']);
+	$objFormParam->addParam("ÍøÍÑ¼ÔÀ«¥«¥Ê", "customer_family_name_kana", STEXT_LEN, "CKVa", array("EXIST_CHECK", "KANA_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_kana01']);
+	$objFormParam->addParam("ÍøÍÑ¼ÔÌ¾¥«¥Ê", "customer_name_kana", STEXT_LEN, "CKVa", array("EXIST_CHECK", "KANA_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_kana02']);
+	$objFormParam->addParam("¤ªÅÅÏÃÈÖ¹æ", "customer_tel", 11, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK" ,"NUM_CHECK"), $arrData['order_tel01'].$arrData['order_tel02'].$arrData['order_tel03']);
+}
+
+/* ÆþÎÏÆâÍÆ¤Î¥Á¥§¥Ã¥¯ */
+function lfCheckError() {
+	global $objFormParam;
+	// ÆþÎÏ¥Ç¡¼¥¿¤òÅÏ¤¹¡£
+	$arrRet =  $objFormParam->getHashArray();
+	$objErr = new SC_CheckError($arrRet);
+	$objErr->arrErr = $objFormParam->checkError();
+	
+	return $objErr->arrErr;
+}
+?>
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_credit.tpl
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_credit.tpl	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_credit.tpl	(revision 15412)
@@ -0,0 +1,190 @@
+<script type="text/javascript">
+<!--
+function next(now, next) {
+	if (now.value.length >= now.getAttribute('maxlength')) {
+	next.focus();
+	}
+}
+//-->
+</script>
+
+<!--¢§CONTENTS-->
+<table width="760" border="0" cellspacing="0" cellpadding="0" summary=" ">
+	<tr>
+		<td align="center" bgcolor="#ffffff">
+		<!--¢§MAIN ONTENTS-->
+		<!--¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì-->
+		<table width="700" border="0" cellspacing="0" cellpadding="0" summary=" ">
+			<tr>
+				<td><img src="/img/shopping/flow03.gif" width="700" height="36" alt="¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì"></td>
+
+			</tr>
+			<tr><td height="15"></td></tr>
+		</table>
+		<!--¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì-->
+		
+		<!--¢§MAIN CONTENTS-->				
+				<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+					<tr>
+						<td colspan="3"><img src="/img/contents/contents_title_top.gif" width="666" height="7" alt=""></td>
+					</tr>
+					<tr>
+						<td background="/img/contents/contents_title_left_bg.gif"><img src="/img/contents/contents_title_left.gif" width="22" height="12" alt=""></td>
+						<td bgcolor="#636469" width="638" class="fs16n"><strong><span class="white"><!--{$tpl_payment_method}--></span><strong></td>
+						<td background="/img/contents/contents_title_right_bg.gif"><img src="/img/common/_.gif" width="18" height="1" alt=""></td>
+					</tr>
+					<tr>
+						<td colspan="3"><img src="/img/contents/contents_title_bottom.gif" width="666" height="7" alt=""></td>
+					</tr>
+					<tr><td height="15"></td></tr>
+				</table>
+
+				<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+					<tr>
+						<td bgcolor="#ffffff">
+						
+						<!--{if $tpl_error != ""}-->
+						<!-- ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸ -->
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+							<tr>
+								<td bgcolor="#cccccc">
+								<table width="666" border="0" cellspacing="1" cellpadding="10" summary=" ">
+									<tr>
+										<td width="666" class="fs12" bgcolor="#ffffff">
+										<span class="redst"><!--{$tpl_error}--></span>
+										</td>
+									</tr>
+								</table>
+							</tr>
+							<tr><td height="15"></td></tr>
+						</table>
+						<!--{/if}-->
+						
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+						<form name="form1" id="form1" method="post" action="./load_payment_module.php" autocomplete="off">
+						<input type="hidden" name="mode" value="next">
+						<input type="hidden" name="uniqid" value="">
+							<tr><td height="5" class="fs12"></td></tr>
+							<tr>
+								<td bgcolor="#cccccc">
+								<table width="666" border="0" cellspacing="1" cellpadding="10" summary=" ">
+									<!--{if $tpl_payment_image != ""}-->
+									<tr>
+										<td width="170" class="fs12" bgcolor="#f3f3f3">¤´ÍøÍÑ¤¤¤¿¤À¤±¤ë¥«¡¼¥É¤Î¼ïÎà</td>
+										<td width="453" bgcolor="#ffffff">
+										<img src="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$tpl_payment_image}-->">
+										</td>
+									</tr>
+									<!--{/if}-->
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">»ÙÊ§²ó¿ô</td>
+										<!--{assign var=key1 value="payment_class"}-->
+										<td  bgcolor="#ffffff" class="fs12">
+										<span class="red"><!--{$arrErr[$key1]}--></span>
+										<select name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="<!--{$arrErr[$key1]|sfGetErrorColor}-->" >
+										<!--{html_options options=$arrPaymentClass selected=$arrForm[$key1].value}-->
+										</select>
+										</td>
+									</tr>
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">¥«¡¼¥ÉÈÖ¹æ</td>
+										<td class="fs12" bgcolor="#ffffff">
+										<table border="0" cellspacing="0" cellpadding="0" summary=" ">
+											<tr>
+												<!--{assign var=key1 value="card_no01"}-->
+												<!--{assign var=key2 value="card_no02"}-->
+												<!--{assign var=key3 value="card_no03"}-->
+												<!--{assign var=key4 value="card_no04"}-->
+												<td class="fs12">
+												<span class="red"><!--{$arrErr[$key1]}--></span>
+												<span class="red"><!--{$arrErr[$key2]}--></span>
+												<span class="red"><!--{$arrErr[$key3]}--></span>
+												<span class="red"><!--{$arrErr[$key4]}--></span>
+												<input type="text" name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="ime-mode: disabled; <!--{$arrErr[$key1]|sfGetErrorColor}-->"  size="6" onkeyup="next(this, this.form.<!--{$key2}-->)" >&nbsp;-&nbsp;
+												<input type="text" name="<!--{$key2}-->" value="<!--{$arrForm[$key2].value|escape}-->" maxlength="<!--{$arrForm[$key2].length}-->" style="ime-mode: disabled; <!--{$arrErr[$key2]|sfGetErrorColor}-->"  size="6" onkeyup="next(this, this.form.<!--{$key3}-->)" >&nbsp;-&nbsp;
+												<input type="text" name="<!--{$key3}-->" value="<!--{$arrForm[$key3].value|escape}-->" maxlength="<!--{$arrForm[$key3].length}-->" style="ime-mode: disabled; <!--{$arrErr[$key3]|sfGetErrorColor}-->"  size="6" onkeyup="next(this, this.form.<!--{$key4}-->)" >&nbsp;-&nbsp;
+												<input type="text" name="<!--{$key4}-->" value="<!--{$arrForm[$key4].value|escape}-->" maxlength="<!--{$arrForm[$key4].length}-->" style="ime-mode: disabled; <!--{$arrErr[$key4]|sfGetErrorColor}-->"  size="6">
+												</td>
+											</tr>
+											<tr><td height="5"></td></tr>
+											<tr>
+												<td class="fs10"><span class="orange">¤´ËÜ¿ÍÌ¾µÁ¤Î¥«¡¼¥É¤ò¤´»ÈÍÑ¤¯¤À¤µ¤¤¡£</span><br>
+												È¾³ÑÆþÎÏ¡ÊÎã¡§1234-5678-9012-3456¡Ë</td>
+											</tr>
+										</table>
+										</td>
+									</tr>
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">Í­¸ú´ü¸Â</td>
+										<!--{assign var=key1 value="card_month"}-->
+										<!--{assign var=key2 value="card_year"}-->
+										<td  bgcolor="#ffffff" class="fs12">
+										<span class="red"><!--{$arrErr[$key1]}--></span>
+										<span class="red"><!--{$arrErr[$key2]}--></span>
+										<select name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="<!--{$arrErr[$key1]|sfGetErrorColor}-->" >
+										<option value="">--</option>
+										<!--{html_options options=$arrMonth selected=$arrForm[$key1].value}-->
+										</select>·î/
+										<select name="<!--{$key2}-->" value="<!--{$arrForm[$key2].value|escape}-->" maxlength="<!--{$arrForm[$key2].length}-->" style="<!--{$arrErr[$key2]|sfGetErrorColor}-->" >
+										<option value="">--</option>
+										<!--{html_options options=$arrYear selected=$arrForm[$key2].value}-->
+										</select>Ç¯</td>
+									</tr>
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">¥«¡¼¥ÉÌ¾µÁ¡Ê¥í¡¼¥Þ»ú»áÌ¾¡Ë</td>
+										<td bgcolor="#ffffff">
+										<table border="0" cellspacing="0" cellpadding="0" summary=" ">
+											<tr>
+												<!--{assign var=key2 value="card_name01"}-->
+												<!--{assign var=key1 value="card_name02"}-->								
+												<td class="fs12">
+												<span class="red"><!--{$arrErr[$key1]}--></span>
+												<span class="red"><!--{$arrErr[$key2]}--></span>
+												Ì¾&nbsp;<input type="text" name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="<!--{$arrErr[$key1]|sfGetErrorColor}-->" size="20" class="bo20">&nbsp;&nbsp;À«&nbsp;
+												<input type="text" name="<!--{$key2}-->" value="<!--{$arrForm[$key2].value|escape}-->" maxlength="<!--{$arrForm[$key2].length}-->" style="<!--{$arrErr[$key2]|sfGetErrorColor}-->" size="20" class="bo20"></td>
+											</tr>
+											<tr><td height="5"></td></tr>
+											<tr>
+												<td class="fs10">È¾³ÑÆþÎÏ¡ÊÎã¡§TARO YAMADA¡Ë</td>
+											</tr>
+										</table>
+										</td>
+									</tr>
+								</table>
+								</td>
+							</tr>
+						</table>
+						
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+							<tr><td height="5"></td></tr>
+							<tr>
+								<td align="center" bgcolor="#f7f5f4">
+								<table width="666" border="0" cellspacing="0" cellpadding="6" summary=" ">
+									<tr>
+										<td class="fs12st" align="center">°Ê¾å¤ÎÆâÍÆ¤Ç´Ö°ã¤¤¤Ê¤±¤ì¤Ð¡¢²¼µ­¡ÖÃíÊ¸´°Î»¥Ú¡¼¥¸¤Ø¡×¥Ü¥¿¥ó¤ò¥¯¥ê¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤¡£<br>
+										<span class="orange">¢¨²èÌÌ¤¬ÀÚ¤êÂØ¤ë¤Þ¤Ç¾¯¡¹»þ´Ö¤¬¤«¤«¤ë¾ì¹ç¤¬¤´¤¶¤¤¤Þ¤¹¤¬¡¢¤½¤Î¤Þ¤Þ¤ªÂÔ¤Á¤¯¤À¤µ¤¤¡£</span></td>
+									</tr>
+									<tr>
+										<td align="center" height="40" bgcolor="#f7f5f4">
+											<a href="#" onclick="document.form2.submit(); return false;" onmouseover="chgImgImageSubmit('/img/common/b_back_on.gif',back03)" onmouseout="chgImgImageSubmit('/img/common/b_back.gif',back03)"><img src="/img/common/b_back.gif" width="150" height="30" alt="Ìá¤ë" border="0" name="back03" id="back03"/></a><img src="/img/_.gif" width="12" height="" alt="" />
+											<input type="image" onmouseover="chgImgImageSubmit('/img/common/b_next_on.gif',this)" onmouseout="chgImgImageSubmit('/img/common/b_next.gif',this)" src="/img/common/b_next.gif" width="150" height="30" alt="¼¡¤Ø" border="0" name="next" id="next" />
+										</td>
+									</tr>
+								</table>
+
+								</td>
+							</tr>
+						</table>
+						</td>
+					</tr>
+				</table>
+				</form>
+				<form name="form2" id="form2" method="post" action="./load_payment_module.php" autocomplete="off">
+				<input type="hidden" name="mode" value="return">			
+				</form>
+				<!--¢¥MAIN CONTENTS-->
+		</td>
+	</tr>
+
+</table>
+<!--¢¥CONTENTS-->
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_bank.tpl
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_bank.tpl	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_bank.tpl	(revision 15412)
@@ -0,0 +1,150 @@
+<script type="text/javascript">
+<!--
+function next(now, next) {
+	if (now.value.length >= now.getAttribute('maxlength')) {
+	next.focus();
+	}
+}
+//-->
+</script>
+
+<!--¢§CONTENTS-->
+<table width="760" border="0" cellspacing="0" cellpadding="0" summary=" ">
+	<tr>
+		<td align="center" bgcolor="#ffffff">
+		<!--¢§MAIN ONTENTS-->
+		<!--¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì-->
+		<table width="700" border="0" cellspacing="0" cellpadding="0" summary=" ">
+			<tr>
+				<td><img src="/img/shopping/flow03.gif" width="700" height="36" alt="¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì"></td>
+
+			</tr>
+			<tr><td height="15"></td></tr>
+		</table>
+		<!--¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì-->
+		
+		<!--¢§MAIN CONTENTS-->				
+				<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+					<tr>
+						<td colspan="3"><img src="/img/contents/contents_title_top.gif" width="666" height="7" alt=""></td>
+					</tr>
+					<tr>
+						<td background="/img/contents/contents_title_left_bg.gif"><img src="/img/contents/contents_title_left.gif" width="22" height="12" alt=""></td>
+						<td bgcolor="#636469" width="638" class="fs16n"><strong><span class="white"><!--{$tpl_payment_method}--></span><strong></td>
+						<td background="/img/contents/contents_title_right_bg.gif"><img src="/img/common/_.gif" width="18" height="1" alt=""></td>
+					</tr>
+					<tr>
+						<td colspan="3"><img src="/img/contents/contents_title_bottom.gif" width="666" height="7" alt=""></td>
+					</tr>
+					<tr><td height="15"></td></tr>
+				</table>
+
+				<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+					<tr>
+						<td bgcolor="#ffffff">
+						<!--{if $tpl_error != ""}-->
+						<!-- ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸ -->
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+							<tr>
+								<td bgcolor="#cccccc">
+								<table width="666" border="0" cellspacing="1" cellpadding="10" summary=" ">
+									<tr>
+										<td width="666" class="fs12" bgcolor="#ffffff">
+										<span class="redst"><!--{$tpl_error}--></span>
+										</td>
+									</tr>
+								</table>
+							</tr>
+							<tr><td height="15"></td></tr>
+						</table>
+						<!--{/if}-->
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+						<form name="form1" id="form1" method="post" action="./load_payment_module.php" autocomplete="off">
+						<input type="hidden" name="mode" value="next">
+						<input type="hidden" name="uniqid" value="">
+							<tr>
+								<td bgcolor="#cccccc">
+								<table width="666" border="0" cellspacing="1" cellpadding="10" summary=" ">
+									<!--{if $tpl_payment_image != ""}-->
+									<tr>
+										<td width="170" class="fs12" bgcolor="#f3f3f3">¤´ÍøÍÑ¤¤¤¿¤À¤±¤ë¶âÍ»µ¡´Ø¤Î¼ïÎà</td>
+										<td width="453" bgcolor="#ffffff">
+										<img src="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$tpl_payment_image}-->">
+										</td>
+									</tr>
+									<!--{/if}-->
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">ÍøÍÑ¼Ô</td>
+										<td bgcolor="#ffffff">
+										<table border="0" cellspacing="0" cellpadding="0" summary=" ">
+											<tr>
+												<!--{assign var=key1 value="customer_family_name"}-->
+												<!--{assign var=key2 value="customer_name"}-->								
+												<td class="fs12">
+												<span class="red"><!--{$arrErr[$key1]}--></span>
+												<span class="red"><!--{$arrErr[$key2]}--></span>
+												À«&nbsp;<input type="text" name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="<!--{$arrErr[$key1]|sfGetErrorColor}-->" size="20" class="bo20">&nbsp;&nbsp;
+												Ì¾&nbsp;<input type="text" name="<!--{$key2}-->" value="<!--{$arrForm[$key2].value|escape}-->" maxlength="<!--{$arrForm[$key2].length}-->" style="<!--{$arrErr[$key2]|sfGetErrorColor}-->" size="20" class="bo20"></td>
+											</tr>
+											<tr><td height="5"></td></tr>
+											<tr>
+												<td class="fs10">¢¨ ÆÃ¼ì¤Ê´Á»ú¤Ï»ÈÍÑ¤Ç¤­¤Ê¤¤¾ì¹ç¤¬¤´¤¶¤¤¤Þ¤¹¡£</td>
+											</tr>
+										</table>
+										</td>
+									</tr>
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">ÍøÍÑ¼Ô(¥«¥Ê)</td>
+										<td bgcolor="#ffffff">
+										<table border="0" cellspacing="0" cellpadding="0" summary=" ">
+											<tr>
+												<!--{assign var=key1 value="customer_family_name_kana"}-->
+												<!--{assign var=key2 value="customer_name_kana"}-->								
+												<td class="fs12">
+												<span class="red"><!--{$arrErr[$key1]}--></span>
+												<span class="red"><!--{$arrErr[$key2]}--></span>
+												¥»¥¤&nbsp;<input type="text" name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="<!--{$arrErr[$key1]|sfGetErrorColor}-->" size="20" class="bo20">&nbsp;&nbsp;
+												¥á¥¤&nbsp;<input type="text" name="<!--{$key2}-->" value="<!--{$arrForm[$key2].value|escape}-->" maxlength="<!--{$arrForm[$key2].length}-->" style="<!--{$arrErr[$key2]|sfGetErrorColor}-->" size="20" class="bo20"></td>
+											</tr>
+											<tr><td height="5"></td></tr>
+										</table>
+										</td>
+									</tr>
+								</table>
+								</td>
+							</tr>
+						</table>
+						
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+							<tr><td height="5"></td></tr>
+							<tr>
+								<td align="center" bgcolor="#f7f5f4">
+								<table width="666" border="0" cellspacing="0" cellpadding="6" summary=" ">
+									<tr>
+										<td class="fs12st" align="center">°Ê¾å¤ÎÆâÍÆ¤Ç´Ö°ã¤¤¤Ê¤±¤ì¤Ð¡¢²¼µ­¡ÖÃíÊ¸´°Î»¥Ú¡¼¥¸¤Ø¡×¥Ü¥¿¥ó¤ò¥¯¥ê¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤¡£<br>
+										<span class="orange">¢¨²èÌÌ¤¬ÀÚ¤êÂØ¤ë¤Þ¤Ç¾¯¡¹»þ´Ö¤¬¤«¤«¤ë¾ì¹ç¤¬¤´¤¶¤¤¤Þ¤¹¤¬¡¢¤½¤Î¤Þ¤Þ¤ªÂÔ¤Á¤¯¤À¤µ¤¤¡£</span></td>
+									</tr>
+									<tr>
+										<td align="center" height="40" bgcolor="#f7f5f4">
+											<a href="#" onclick="document.form2.submit(); return false;" onmouseover="chgImgImageSubmit('/img/common/b_back_on.gif',back03)" onmouseout="chgImgImageSubmit('/img/common/b_back.gif',back03)"><img src="/img/common/b_back.gif" width="150" height="30" alt="Ìá¤ë" border="0" name="back03" id="back03"/></a><img src="/img/_.gif" width="12" height="" alt="" />
+											<input type="image" onmouseover="chgImgImageSubmit('/img/common/b_next_on.gif',this)" onmouseout="chgImgImageSubmit('/img/common/b_next.gif',this)" src="/img/common/b_next.gif" width="150" height="30" alt="¼¡¤Ø" border="0" name="next" id="next" />
+										</td>
+									</tr>
+								</table>
+
+								</td>
+							</tr>
+						</table>
+						</td>
+					</tr>
+				</table>
+				</form>
+				<form name="form2" id="form2" method="post" action="./load_payment_module.php" autocomplete="off">
+				<input type="hidden" name="mode" value="return">			
+				</form>
+				<!--¢¥MAIN CONTENTS-->
+		</td>
+	</tr>
+
+</table>
+<!--¢¥CONTENTS-->
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/mdl_paygent.tpl
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/mdl_paygent.tpl	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/mdl_paygent.tpl	(revision 15412)
@@ -0,0 +1,325 @@
+<!--{*
+/*
+ * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ */
+*}-->
+<!--¡¡-->
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
+
+<head>
+<meta http-equiv="content-type" content="application/xhtml+xml; charset=<!--{$smarty.const.CHAR_CODE}-->" />
+<meta http-equiv="content-script-type" content="text/javascript" />
+<meta http-equiv="content-style-type" content="text/css" />
+<link rel="stylesheet" href="<!--{$smarty.const.URL_DIR}-->admin/css/contents.css" type="text/css" media="all" />
+<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}-->js/css.js"></script>
+<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}-->js/navi.js"></script>
+<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}-->js/win_op.js"></script>
+<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}-->js/site.js"></script>
+<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}-->js/admin.js"></script>
+<!--{include file='css/contents.tpl'}-->
+<title><!--{$tpl_subtitle}--></title>
+<script type="text/javascript">
+<!--
+self.moveTo(20,20);self.focus();
+
+function lfnCheckPayment(){
+	var fm = document.form1;
+	var val = 0;
+	
+	payment = new Array('payment[]');
+
+	for(pi = 0; pi < payment.length; pi++) {
+		// ¥¯¥ì¥¸¥Ã¥È¤Î¾ì¹ç
+		list = new Array('credit[]');
+		if(fm[payment[pi]][0].checked){
+			fnChangeDisabled(list, false);
+		}else{
+			fnChangeDisabled(list);
+		}
+		
+		// ¥³¥ó¥Ó¥Ë¤Î¾ì¹ç
+		list = new Array('convenience[]','conveni_limit_date');
+		if(fm[payment[pi]][1].checked){
+			fnChangeDisabled(list, false);
+		}else{
+			fnChangeDisabled(list);
+		}
+		
+		// ATM·èºÑ¤Î¾ì¹ç
+		list = new Array('atm_limit_date', 'payment_detail');
+		if(fm[payment[pi]][2].checked){
+			fnChangeDisabled(list, false);
+		}else{
+			fnChangeDisabled(list);
+		}
+		
+		// ¶ä¹Ô¥Í¥Ã¥È¤Î¾ì¹ç
+		list = new Array('claim_kanji', 'claim_kana', 'asp_payment_term', 'copy_right', 'free_memo');
+		if(fm[payment[pi]][3].checked){
+			fnChangeDisabled(list, false);
+		}else{
+			fnChangeDisabled(list);
+		}
+	}
+}
+
+function fnChangeDisabled(list, disable) {
+	len = list.length;
+
+	if(disable == null) { disable = true; }
+	
+	for(i = 0; i < len; i++) {
+		if(document.form1[list[i]]) {
+			// ¥é¥¸¥ª¥Ü¥¿¥ó¡¢¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹Åù¤ÎÇÛÎó¤ËÂÐ±þ
+			max = document.form1[list[i]].length
+			if(max > 1) {
+				for(j = 0; j < max; j++) {
+					// Í­¸ú¡¢Ìµ¸ú¤ÎÀÚ¤êÂØ¤¨
+					document.form1[list[i]][j].disabled = disable;
+				}
+			} else {
+				// Í­¸ú¡¢Ìµ¸ú¤ÎÀÚ¤êÂØ¤¨
+				document.form1[list[i]].disabled = disable;
+			}
+		}
+	}
+}
+
+function win_open(URL){
+	var WIN;
+	WIN = window.open(URL);
+	WIN.focus();
+}
+//-->
+</script>
+</head>
+
+
+<body bgcolor="#ffffff" text="#666666" link="#007bb7" vlink="#007bb7" alink="#cc0000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload='lfnCheckPayment(); <!--{$tpl_onload}-->'>
+<noscript>
+<link rel="stylesheet" href="<!--{$smarty.const.URL_DIR}-->admin/css/common.css" type="text/css" />
+</noscript>
+
+<div align="center">
+<!--¡ú¡ú¥á¥¤¥ó¥³¥ó¥Æ¥ó¥Ä¡ú¡ú-->
+<table width="500" border="0" cellspacing="0" cellpadding="0" summary=" ">
+<form name="form1" id="form1" method="post" action="<!--{$smarty.server.REQUEST_URI|escape}-->">
+<input type="hidden" name="mode" value="edit">
+	<tr valign="top">
+		<td class="mainbg">
+			<!--¢§ÅÐÏ¿¥Æ¡¼¥Ö¥ë¤³¤³¤«¤é-->
+			<table width="500" border="0" cellspacing="0" cellpadding="0" summary=" ">
+				<!--¥á¥¤¥ó¥¨¥ê¥¢-->
+				<tr>
+					<td align="center">
+						<table width="470" border="0" cellspacing="0" cellpadding="0" summary=" ">
+							<tr><td height="14"></td></tr>
+							<tr>
+								<td colspan="3"><img src="<!--{$smarty.const.URL_DIR}-->img/contents/main_top.jpg" width="470" height="14" alt=""></td>
+							</tr>
+							<tr>
+								<td background="<!--{$smarty.const.URL_DIR}-->img/contents/main_left.jpg"><img src="<!--{$smarty.const.URL_DIR}-->img/common/_.gif" width="14" height="1" alt=""></td>
+								<td bgcolor="#cccccc" >
+									<table width="442" border="0" cellspacing="0" cellpadding="0" summary=" ">
+										<tr>
+											<td colspan="3"><img src="<!--{$smarty.const.URL_DIR}-->img/contents/contents_title_top.gif" width="442" height="7" alt=""></td>
+										</tr>
+										<tr>
+											<td background="<!--{$smarty.const.URL_DIR}-->img/contents/contents_title_left_bg.gif"><img src="<!--{$smarty.const.URL_DIR}-->img/contents/contents_title_left.gif" width="22" height="12" alt=""></td>
+											<td bgcolor="#636469" width="402" class="fs14n"><span class="white"><!--¥³¥ó¥Æ¥ó¥Ä¥¿¥¤¥È¥ë--><!--{$tpl_subtitle}--></span></td>
+											<td background="<!--{$smarty.const.URL_DIR}-->img/contents/contents_title_right_bg.gif"><img src="<!--{$smarty.const.URL_DIR}-->img/common/_.gif" width="18" height="1" alt=""></td>
+										</tr>
+										<tr>
+											<td colspan="3"><img src="<!--{$smarty.const.URL_DIR}-->img/contents/contents_title_bottom.gif" width="442" height="7" alt=""></td>
+										</tr>
+										<tr>
+											<td colspan="3"><img src="<!--{$smarty.const.URL_DIR}-->img/contents/main_bar.jpg" width="442" height="10" alt=""></td>
+										</tr>
+									</table>
+
+									<table width="442" border="0" cellspacing="0" cellpadding="0" summary=" ">
+										<tr><td><img src="<!--{$smarty.const.URL_DIR}-->img/contents/main_bar.jpg" width="442" height="10" alt=""></td></tr>
+									</table>
+									
+									<!--{if $arrErr.err != ""}-->
+									<table width="442" border="0" cellspacing="0" cellpadding="0" summary=" ">
+										<tr class="fs12n">
+											<td width="442" bgcolor="#ffffff"><span class="red12"><!--{$arrErr.err}--></span><td>
+										</tr>
+									</table>
+									<!--{/if}-->
+									
+									<table width="442" border="0" cellspacing="1" cellpadding="8" summary=" ">
+										<tr class="fs12n">
+											<td width="100" bgcolor="#f3f3f3">¥Þ¡¼¥Á¥ã¥ó¥ÈID<span class="red">¢¨</span></td>
+											<td width="300" bgcolor="#ffffff">
+											<!--{assign var=key value="merchant_id"}-->
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											<input type="text" name="<!--{$key}-->" style="ime-mode:disabled; <!--{$arrErr[$key]|sfGetErrorColor}-->" value="<!--{$arrForm[$key].value}-->" class="box20" maxlength="<!--{$smarty.const.STEXT_LEN}-->">
+											</td>
+										</tr>
+										<tr class="fs12n">
+											<td width="" bgcolor="#f3f3f3">ÀÜÂ³ID<span class="red">¢¨</span></td>
+											<td width="" bgcolor="#ffffff">
+											<!--{assign var=key value="connect_id"}-->
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											<input type="text" name="<!--{$key}-->" style="ime-mode:disabled; <!--{$arrErr[$key]|sfGetErrorColor}-->" value="<!--{$arrForm[$key].value}-->" class="box20" maxlength="<!--{$smarty.const.STEXT_LEN}-->">
+											</td>
+										</tr>
+										<tr class="fs12n">
+											<td width="" bgcolor="#f3f3f3">ÀÜÂ³¥Ñ¥¹¥ï¡¼¥É<span class="red">¢¨</span></td>
+											<td width="" bgcolor="#ffffff">
+											<!--{assign var=key value="connect_password"}-->
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											<input type="password" name="<!--{$key}-->" style="ime-mode:disabled; <!--{$arrErr[$key]|sfGetErrorColor}-->" value="<!--{$arrForm[$key].value}-->" class="box20" maxlength="<!--{$smarty.const.STEXT_LEN}-->">
+											</td>
+										</tr>
+										<tr class="fs12n">
+											<td width="" bgcolor="#f3f3f3">ÍøÍÑ·èºÑ<span class="red">¢¨</span></td>
+											<td width="" bgcolor="#ffffff">
+											<!--{assign var=key value="payment"}-->
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											<!--{html_checkboxes_ex name="$key" options=$arrPayment selected=$arrForm[$key].value style=$arrErr[$key]|sfGetErrorColor onclick="lfnCheckPayment();"}-->
+											</td>
+										</tr>
+										
+										<tr class="fs12n">
+											<td colspan="2" width="90" bgcolor="#f3f3f3">¢§¥³¥ó¥Ó¥ËÀßÄê</td>
+										</tr>
+																				
+										<tr class="fs12n">
+											<td width="" bgcolor="#f3f3f3">»ÙÊ§´ü¸ÂÆü</td>
+											<td width="" bgcolor="#ffffff">
+											<!--{assign var=key value="conveni_limit_date"}-->
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											¹ØÆþÆü¤è¤ê<input type="text" name="<!--{$key}-->" style="ime-mode:disabled; <!--{$arrErr[$key]|sfGetErrorColor}-->" value="<!--{$arrForm[$key].value}-->" size="2" maxlength="2">Æü
+											</td>
+										</tr>
+										
+										<tr class="fs12n">
+											<td colspan="2" width="90" bgcolor="#f3f3f3">¢§ATM·èºÑÀßÄê</td>
+										</tr>
+										
+										<tr class="fs12n">
+											<td width="" bgcolor="#f3f3f3">»ÙÊ§´ü¸ÂÆü</td>
+											<td width="" bgcolor="#ffffff">
+											<!--{assign var=key value="atm_limit_date"}-->
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											¹ØÆþÆü¤è¤ê<input type="text" name="<!--{$key}-->" style="ime-mode:disabled; <!--{$arrErr[$key]|sfGetErrorColor}-->" value="<!--{$arrForm[$key].value}-->" size="2" maxlength="2">Æü
+											</td>
+										</tr>
+										<tr class="fs12n">
+											<td width="" bgcolor="#f3f3f3">É½¼¨Å¹ÊÞÌ¾¡Ê¥«¥Ê¡Ë</td>
+											<td width="" bgcolor="#ffffff">
+											<!--{assign var=key value="payment_detail"}-->
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											<input type="text" name="<!--{$key}-->" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" value="<!--{$arrForm[$key].value}-->" class="box30" maxlength="<!--{$smarty.const.STEXT_LEN}-->"><br>
+											<span class="fs12">¢¨ Æþ¶â»þ¤Ë²èÌÌÉ½¼¨¤µ¤ì¤ë³ÎÇ§ÍÑ¤ÎÀâÌÀÊ¸¡Ö¡û¡û¡û¥ª¥ó¥é¥¤¥ó¥·¥ç¥Ã¥×¡×Åù</span>
+											</td>
+										</tr>
+										
+										<tr class="fs12n">
+											<td colspan="2" width="90" bgcolor="#f3f3f3">¢§¶ä¹Ô¥Í¥Ã¥È·èºÑÀßÄê</td>
+										</tr>
+										<tr class="fs12n">
+											<td width="" bgcolor="#f3f3f3">»ÙÊ§´ü¸ÂÆü</td>
+											<td width="" bgcolor="#ffffff">
+											<!--{assign var=key value="asp_payment_term"}-->
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											¹ØÆþÆü¤è¤ê<input type="text" name="<!--{$key}-->" style="ime-mode:disabled; <!--{$arrErr[$key]|sfGetErrorColor}-->" value="<!--{$arrForm[$key].value}-->" size="2" maxlength="2">Æü
+											</td>
+										</tr>
+										<tr class="fs12n">
+											<td width="" bgcolor="#f3f3f3">É½¼¨Å¹ÊÞÌ¾¡Ê´Á»ú¡Ë</td>
+											<td width="" bgcolor="#ffffff">
+											<!--{assign var=key value="claim_kanji"}-->
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											<input type="text" name="<!--{$key}-->" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" value="<!--{$arrForm[$key].value}-->" class="box30" maxlength="<!--{$smarty.const.STEXT_LEN}-->"><br>
+											<span class="fs12">¢¨ Æþ¶â»þ¤Ë²èÌÌÉ½¼¨¤µ¤ì¤ë³ÎÇ§ÍÑ¤ÎÀâÌÀÊ¸¡Ö¡û¡û¡û¥ª¥ó¥é¥¤¥ó¥·¥ç¥Ã¥×¡×Åù</span>
+											</td>
+										</tr>
+										<tr class="fs12n">
+											<td width="" bgcolor="#f3f3f3">É½¼¨Å¹ÊÞÌ¾¡Ê¥«¥Ê¡Ë</td>
+											<td width="" bgcolor="#ffffff">
+											<!--{assign var=key value="claim_kana"}-->
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											<input type="text" name="<!--{$key}-->" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" value="<!--{$arrForm[$key].value}-->" class="box30" maxlength="<!--{$smarty.const.STEXT_LEN}-->"><br>
+											<span class="fs12">¢¨ Æþ¶â»þ¤Ë²èÌÌÉ½¼¨¤µ¤ì¤ë³ÎÇ§ÍÑ¤ÎÀâÌÀÊ¸¡Ö¡û¡û¡û¥ª¥ó¥é¥¤¥ó¥·¥ç¥Ã¥×¡×Åù</span>
+											</td>
+										</tr>
+										<tr class="fs12n">
+											<td width="" bgcolor="#f3f3f3">·èºÑ¥Ú¡¼¥¸ÍÑ¥³¥Ô¡¼¥é¥¤¥È(È¾³Ñ±Ñ¿ô)</td>
+											<td width="" bgcolor="#ffffff">
+											<!--{assign var=key value="copy_right"}-->
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											<input type="text" name="<!--{$key}-->" style="ime-mode:disabled; <!--{$arrErr[$key]|sfGetErrorColor}-->" value="<!--{$arrForm[$key].value}-->" class="box30" maxlength="<!--{$smarty.const.STEXT_LEN}-->"><br>
+											<span class="fs12">¢¨ Æþ¶â»þ¤Ë²èÌÌÉ½¼¨¤µ¤ì¤ë³ÎÇ§ÍÑ¤ÎÀâÌÀÊ¸¡Ö¡û¡û¡û¥ª¥ó¥é¥¤¥ó¥·¥ç¥Ã¥×¡×Åù</span>
+											</td>
+										</tr>										
+											<!--{assign var=key value="free_memo"}-->
+										<tr class="fs12n">
+											<td width="" bgcolor="#f3f3f3">·èºÑ¥Ú¡¼¥¸ÍÑÀâÌÀÊ¸(Á´³Ñ)</td>
+											<td width="" bgcolor="#ffffff">
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											<textarea name="<!--{$key}-->" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" value="<!--{$arrForm[$key].value}-->" cols="40" rows="2" maxlength="<!--{$smarty.const.STEXT_LEN}-->"><!--{$arrForm[$key].value}--></textarea><br>
+											<span class="fs12">¢¨ Æþ¶â»þ¤Ë²èÌÌÉ½¼¨¤µ¤ì¤ë³ÎÇ§ÍÑ¤ÎÀâÌÀÊ¸¡Ö¡û¡û¡û¥ª¥ó¥é¥¤¥ó¥·¥ç¥Ã¥×¡×Åù</span>
+											</td>
+										</tr>
+										<!--{assign var=key value="service"}-->
+										<!--{if $arrErr[$key] != ""}-->
+										<tr class="fs12n">
+											<td bgcolor="#ffffff" colspan=2>
+											<span class="red12"><!--{$arrErr[$key]}--></span>
+											</td>
+										</tr>
+										<!--{/if}-->
+									</table>
+
+									<table width="442" border="0" cellspacing="0" cellpadding="0" summary=" ">
+										<tr>
+											<td bgcolor="#cccccc"><img src="<!--{$smarty.const.URL_DIR}-->img/common/_.gif" width="1" height="5" alt=""></td>
+											<td><img src="<!--{$smarty.const.URL_DIR}-->img/contents/tbl_top.gif" width="440" height="7" alt=""></td>
+											<td bgcolor="#cccccc"><img src="<!--{$smarty.const.URL_DIR}-->img/common/_.gif" width="1" height="5" alt=""></td>
+										</tr>
+										<tr>
+											<td bgcolor="#cccccc"><img src="<!--{$smarty.const.URL_DIR}-->img/common/_.gif" width="1" height="10" alt=""></td>
+											<td bgcolor="#e9e7de" align="center">
+											<table border="0" cellspacing="0" cellpadding="0" summary=" ">
+												<tr>
+													<td><input type="image" onMouseover="chgImgImageSubmit('<!--{$smarty.const.URL_DIR}-->img/contents/btn_regist_on.jpg',this)" onMouseout="chgImgImageSubmit('<!--{$smarty.const.URL_DIR}-->img/contents/btn_regist.jpg',this)" src="<!--{$smarty.const.URL_DIR}-->img/contents/btn_regist.jpg" width="123" height="24" alt="¤³¤ÎÆâÍÆ¤ÇÅÐÏ¿¤¹¤ë" border="0" name="subm" onClick="document.body.style.cursor = 'wait';"></td>
+												</tr>
+											</table>
+											</td>
+											<td bgcolor="#cccccc"><img src="<!--{$smarty.const.URL_DIR}-->img/common/_.gif" width="1" height="10" alt=""></td>
+										</tr>
+										<tr>
+											<td colspan="3"><img src="<!--{$smarty.const.URL_DIR}-->img/contents/tbl_bottom.gif" width="442" height="8" alt=""></td>
+										</tr>
+									</table>
+								</td>
+								<td background="<!--{$smarty.const.URL_DIR}-->img/contents/main_right.jpg"><img src="<!--{$smarty.const.URL_DIR}-->img/common/_.gif" width="14" height="1" alt=""></td>
+							</tr>
+							<tr>
+								<td colspan="3"><img src="<!--{$smarty.const.URL_DIR}-->img/contents/main_bottom.jpg" width="470" height="14" alt=""></td>
+							</tr>
+							<tr><td height="30"></td></tr>
+						</table>
+					</td>
+				</tr>
+				<!--¥á¥¤¥ó¥¨¥ê¥¢-->
+			</table>
+			<!--¢¥ÅÐÏ¿¥Æ¡¼¥Ö¥ë¤³¤³¤Þ¤Ç-->
+		</td>
+	</tr>
+</form>
+</table>
+<!--¡ú¡ú¥á¥¤¥ó¥³¥ó¥Æ¥ó¥Ä¡ú¡ú-->
+</div>
+
+</body>
+</html>
+
+
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_bank_redirect.tpl
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_bank_redirect.tpl	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_bank_redirect.tpl	(revision 15412)
@@ -0,0 +1,85 @@
+<script type="text/javascript">
+<!--
+function next(now, next) {
+	if (now.value.length >= now.getAttribute('maxlength')) {
+	next.focus();
+	}
+}
+//-->
+</script>
+
+<!--¢§CONTENTS-->
+<table width="760" border="0" cellspacing="0" cellpadding="0" summary=" ">
+	<tr>
+		<td align="center" bgcolor="#ffffff">
+		<!--¢§MAIN ONTENTS-->
+		<!--¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì-->
+		<table width="700" border="0" cellspacing="0" cellpadding="0" summary=" ">
+			<tr>
+				<td><img src="/img/shopping/flow03.gif" width="700" height="36" alt="¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì"></td>
+			</tr>
+			<tr><td height="15"></td></tr>
+		</table>
+		<!--¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì-->
+		
+		<!--¢§MAIN CONTENTS-->				
+				<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+					<tr>
+						<td colspan="3"><img src="/img/contents/contents_title_top.gif" width="666" height="7" alt=""></td>
+					</tr>
+					<tr>
+						<td background="/img/contents/contents_title_left_bg.gif"><img src="/img/contents/contents_title_left.gif" width="22" height="12" alt=""></td>
+						<td bgcolor="#636469" width="638" class="fs14n"><strong><span class="white">¶ä¹Ô¥Í¥Ã¥È·èºÑ</span><strong></td>
+						<td background="/img/contents/contents_title_right_bg.gif"><img src="/img/common/_.gif" width="18" height="1" alt=""></td>
+					</tr>
+					<tr>
+						<td colspan="3"><img src="/img/contents/contents_title_bottom.gif" width="666" height="7" alt=""></td>
+					</tr>
+					<tr><td height="15"></td></tr>
+				</table>
+
+				<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+					<tr>
+						<td bgcolor="#ffffff">
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+							<tr><td height="5" class="fs12"><span class="red"><!--{$tpl_error}--></span></td></tr>
+							<tr>
+								<td bgcolor="#cccccc">
+								<table width="666" border="0" cellspacing="1" cellpadding="10" summary=" ">
+									<tr>
+										<td class="fs12st" bgcolor="#ffffff" align="center">
+											¡Ö<!--{$tpl_bank}-->¡×¤Î·èºÑ¥Ú¡¼¥¸¤Ø¤ª¿Ê¤ß²¼¤µ¤¤¡£<!--{$tpl_form}-->
+										</td>
+									</tr>	
+								</table>
+								</td>
+							</tr>
+						</table>
+						
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+							<tr><td height="5"></td></tr>
+							<tr>
+								<td align="center" bgcolor="#f7f5f4">
+								<table width="666" border="0" cellspacing="0" cellpadding="6" summary=" ">
+									<tr>
+										<td align="center" height="40" bgcolor="#f7f5f4">
+											<a href="#" onclick="document.form2.submit(); return false;" onmouseover="chgImgImageSubmit('/img/common/b_back_on.gif',back03)" onmouseout="chgImgImageSubmit('/img/common/b_back.gif',back03)"><img src="/img/common/b_back.gif" width="150" height="30" alt="Ìá¤ë" border="0" name="back03" id="back03"/></a>
+										</td>
+									</tr>
+								</table>
+
+								</td>
+							</tr>
+						</table>
+						</td>
+					</tr>
+				</table>
+				<form name="form2" id="form2" method="post" action="./load_payment_module.php" autocomplete="off">
+				<input type="hidden" name="mode" value="return">			
+				</form>
+				<!--¢¥MAIN CONTENTS-->
+		</td>
+	</tr>
+
+</table>
+<!--¢¥CONTENTS-->
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_atm.tpl
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_atm.tpl	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_atm.tpl	(revision 15412)
@@ -0,0 +1,150 @@
+<script type="text/javascript">
+<!--
+function next(now, next) {
+	if (now.value.length >= now.getAttribute('maxlength')) {
+	next.focus();
+	}
+}
+//-->
+</script>
+
+<!--¢§CONTENTS-->
+<table width="760" border="0" cellspacing="0" cellpadding="0" summary=" ">
+	<tr>
+		<td align="center" bgcolor="#ffffff">
+		<!--¢§MAIN ONTENTS-->
+		<!--¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì-->
+		<table width="700" border="0" cellspacing="0" cellpadding="0" summary=" ">
+			<tr>
+				<td><img src="/img/shopping/flow03.gif" width="700" height="36" alt="¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì"></td>
+
+			</tr>
+			<tr><td height="15"></td></tr>
+		</table>
+		<!--¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì-->
+		
+		<!--¢§MAIN CONTENTS-->				
+				<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+					<tr>
+						<td colspan="3"><img src="/img/contents/contents_title_top.gif" width="666" height="7" alt=""></td>
+					</tr>
+					<tr>
+						<td background="/img/contents/contents_title_left_bg.gif"><img src="/img/contents/contents_title_left.gif" width="22" height="12" alt=""></td>
+						<td bgcolor="#636469" width="638" class="fs16n"><strong><span class="white"><!--{$tpl_payment_method}--></span><strong></td>
+						<td background="/img/contents/contents_title_right_bg.gif"><img src="/img/common/_.gif" width="18" height="1" alt=""></td>
+					</tr>
+					<tr>
+						<td colspan="3"><img src="/img/contents/contents_title_bottom.gif" width="666" height="7" alt=""></td>
+					</tr>
+					<tr><td height="15"></td></tr>
+				</table>
+
+				<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+					<tr>
+						<td bgcolor="#ffffff">
+						<!--{if $tpl_error != ""}-->
+						<!-- ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸ -->
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+							<tr>
+								<td bgcolor="#cccccc">
+								<table width="666" border="0" cellspacing="1" cellpadding="10" summary=" ">
+									<tr>
+										<td width="666" class="fs12" bgcolor="#ffffff">
+										<span class="redst"><!--{$tpl_error}--></span>
+										</td>
+									</tr>
+								</table>
+							</tr>
+							<tr><td height="15"></td></tr>
+						</table>
+						<!--{/if}-->
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+						<form name="form1" id="form1" method="post" action="./load_payment_module.php" autocomplete="off">
+						<input type="hidden" name="mode" value="next">
+						<input type="hidden" name="uniqid" value="">
+							<tr>
+								<td bgcolor="#cccccc">
+								<table width="666" border="0" cellspacing="1" cellpadding="10" summary=" ">
+									<!--{if $tpl_payment_image != ""}-->
+									<tr>
+										<td width="170" class="fs12" bgcolor="#f3f3f3">¤´ÍøÍÑ¤¤¤¿¤À¤±¤ë¶âÍ»µ¡´Ø¤Î¼ïÎà</td>
+										<td width="453" bgcolor="#ffffff">
+										<img src="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$tpl_payment_image}-->">
+										</td>
+									</tr>
+									<!--{/if}-->
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">ÍøÍÑ¼Ô</td>
+										<td bgcolor="#ffffff">
+										<table border="0" cellspacing="0" cellpadding="0" summary=" ">
+											<tr>
+												<!--{assign var=key1 value="customer_family_name"}-->
+												<!--{assign var=key2 value="customer_name"}-->								
+												<td class="fs12">
+												<span class="red"><!--{$arrErr[$key1]}--></span>
+												<span class="red"><!--{$arrErr[$key2]}--></span>
+												À«&nbsp;<input type="text" name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="<!--{$arrErr[$key1]|sfGetErrorColor}-->" size="20" class="bo20">&nbsp;&nbsp;
+												Ì¾&nbsp;<input type="text" name="<!--{$key2}-->" value="<!--{$arrForm[$key2].value|escape}-->" maxlength="<!--{$arrForm[$key2].length}-->" style="<!--{$arrErr[$key2]|sfGetErrorColor}-->" size="20" class="bo20"></td>
+											</tr>
+											<tr><td height="5"></td></tr>
+											<tr>
+												<td class="fs10">¢¨ ÆÃ¼ì¤Ê´Á»ú¤Ï»ÈÍÑ¤Ç¤­¤Ê¤¤¾ì¹ç¤¬¤´¤¶¤¤¤Þ¤¹¡£</td>
+											</tr>
+										</table>
+										</td>
+									</tr>
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">ÍøÍÑ¼Ô(¥«¥Ê)</td>
+										<td bgcolor="#ffffff">
+										<table border="0" cellspacing="0" cellpadding="0" summary=" ">
+											<tr>
+												<!--{assign var=key1 value="customer_family_name_kana"}-->
+												<!--{assign var=key2 value="customer_name_kana"}-->								
+												<td class="fs12">
+												<span class="red"><!--{$arrErr[$key1]}--></span>
+												<span class="red"><!--{$arrErr[$key2]}--></span>
+												¥»¥¤&nbsp;<input type="text" name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="<!--{$arrErr[$key1]|sfGetErrorColor}-->" size="20" class="bo20">&nbsp;&nbsp;
+												¥á¥¤&nbsp;<input type="text" name="<!--{$key2}-->" value="<!--{$arrForm[$key2].value|escape}-->" maxlength="<!--{$arrForm[$key2].length}-->" style="<!--{$arrErr[$key2]|sfGetErrorColor}-->" size="20" class="bo20"></td>
+											</tr>
+											<tr><td height="5"></td></tr>
+										</table>
+										</td>
+									</tr>
+								</table>
+								</td>
+							</tr>
+						</table>
+						
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+							<tr><td height="5"></td></tr>
+							<tr>
+								<td align="center" bgcolor="#f7f5f4">
+								<table width="666" border="0" cellspacing="0" cellpadding="6" summary=" ">
+									<tr>
+										<td class="fs12st" align="center">°Ê¾å¤ÎÆâÍÆ¤Ç´Ö°ã¤¤¤Ê¤±¤ì¤Ð¡¢²¼µ­¡ÖÃíÊ¸´°Î»¥Ú¡¼¥¸¤Ø¡×¥Ü¥¿¥ó¤ò¥¯¥ê¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤¡£<br>
+										<span class="orange">¢¨²èÌÌ¤¬ÀÚ¤êÂØ¤ë¤Þ¤Ç¾¯¡¹»þ´Ö¤¬¤«¤«¤ë¾ì¹ç¤¬¤´¤¶¤¤¤Þ¤¹¤¬¡¢¤½¤Î¤Þ¤Þ¤ªÂÔ¤Á¤¯¤À¤µ¤¤¡£</span></td>
+									</tr>
+									<tr>
+										<td align="center" height="40" bgcolor="#f7f5f4">
+											<a href="#" onclick="document.form2.submit(); return false;" onmouseover="chgImgImageSubmit('/img/common/b_back_on.gif',back03)" onmouseout="chgImgImageSubmit('/img/common/b_back.gif',back03)"><img src="/img/common/b_back.gif" width="150" height="30" alt="Ìá¤ë" border="0" name="back03" id="back03"/></a><img src="/img/_.gif" width="12" height="" alt="" />
+											<input type="image" onmouseover="chgImgImageSubmit('/img/common/b_next_on.gif',this)" onmouseout="chgImgImageSubmit('/img/common/b_next.gif',this)" src="/img/common/b_next.gif" width="150" height="30" alt="¼¡¤Ø" border="0" name="next" id="next" />
+										</td>
+									</tr>
+								</table>
+
+								</td>
+							</tr>
+						</table>
+						</td>
+					</tr>
+				</table>
+				</form>
+				<form name="form2" id="form2" method="post" action="./load_payment_module.php" autocomplete="off">
+				<input type="hidden" name="mode" value="return">			
+				</form>
+				<!--¢¥MAIN CONTENTS-->
+		</td>
+	</tr>
+
+</table>
+<!--¢¥CONTENTS-->
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_conveni.tpl
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_conveni.tpl	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_conveni.tpl	(revision 15412)
@@ -0,0 +1,173 @@
+<script type="text/javascript">
+<!--
+function next(now, next) {
+	if (now.value.length >= now.getAttribute('maxlength')) {
+	next.focus();
+	}
+}
+//-->
+</script>
+
+<!--¢§CONTENTS-->
+<table width="760" border="0" cellspacing="0" cellpadding="0" summary=" ">
+	<tr>
+		<td align="center" bgcolor="#ffffff">
+		<!--¢§MAIN ONTENTS-->
+		<!--¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì-->
+		<table width="700" border="0" cellspacing="0" cellpadding="0" summary=" ">
+			<tr>
+				<td><img src="/img/shopping/flow03.gif" width="700" height="36" alt="¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì"></td>
+
+			</tr>
+			<tr><td height="15"></td></tr>
+		</table>
+		<!--¹ØÆþ¼êÂ³¤­¤ÎÎ®¤ì-->
+		
+		<!--¢§MAIN CONTENTS-->				
+				<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+					<tr>
+						<td colspan="3"><img src="/img/contents/contents_title_top.gif" width="666" height="7" alt=""></td>
+					</tr>
+					<tr>
+						<td background="/img/contents/contents_title_left_bg.gif"><img src="/img/contents/contents_title_left.gif" width="22" height="12" alt=""></td>
+						<td bgcolor="#636469" width="638" class="fs16n"><strong><span class="white"><!--{$tpl_payment_method}--></span><strong></td>
+						<td background="/img/contents/contents_title_right_bg.gif"><img src="/img/common/_.gif" width="18" height="1" alt=""></td>
+					</tr>
+					<tr>
+						<td colspan="3"><img src="/img/contents/contents_title_bottom.gif" width="666" height="7" alt=""></td>
+					</tr>
+					<tr><td height="15"></td></tr>
+				</table>
+
+				<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+					<tr>
+						<td bgcolor="#ffffff">
+						<!--{if $tpl_error != ""}-->
+						<!-- ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸ -->
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+							<tr>
+								<td bgcolor="#cccccc">
+								<table width="666" border="0" cellspacing="1" cellpadding="10" summary=" ">
+									<tr>
+										<td width="666" class="fs12" bgcolor="#ffffff">
+										<span class="redst"><!--{$tpl_error}--></span>
+										</td>
+									</tr>
+								</table>
+							</tr>
+							<tr><td height="15"></td></tr>
+						</table>
+						<!--{/if}-->
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+						<form name="form1" id="form1" method="post" action="./load_payment_module.php" autocomplete="off">
+						<input type="hidden" name="mode" value="next">
+						<input type="hidden" name="uniqid" value="">
+							<tr>
+								<td bgcolor="#cccccc">
+								<table width="666" border="0" cellspacing="1" cellpadding="10" summary=" ">
+									<!--{if $tpl_payment_image != ""}-->
+									<tr>
+										<td width="170" class="fs12" bgcolor="#f3f3f3">¤´ÍøÍÑ¤¤¤¿¤À¤±¤ë¥³¥ó¥Ó¥Ë¤Î¼ïÎà</td>
+										<td width="453" bgcolor="#ffffff">
+										<img src="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$tpl_payment_image}-->">
+										</td>
+									</tr>
+									<!--{/if}-->
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">¥³¥ó¥Ó¥ËÁªÂò</td>
+										<td bgcolor="#ffffff">
+										<table border="0" cellspacing="0" cellpadding="0" summary=" ">
+											<tr>
+												<!--{assign var=key1 value="cvs_company_id"}-->
+												<td class="fs12"><span class="red"><!--{$arrErr[$key1]}--></span>
+												<select name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="<!--{$arrErr[$key1]|sfGetErrorColor}-->" >
+												<option value="">¤´ÁªÂò¤¯¤À¤µ¤¤</option>
+												<!--{html_options options=$arrConvenience selected=$arrForm[$key1].value}-->
+												</select></td>
+											</tr>
+										</table>
+										</td>
+									</tr>																			
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">ÍøÍÑ¼Ô</td>
+										<td bgcolor="#ffffff">
+										<table border="0" cellspacing="0" cellpadding="0" summary=" ">
+											<tr>
+												<!--{assign var=key1 value="customer_family_name"}-->
+												<!--{assign var=key2 value="customer_name"}-->								
+												<td class="fs12">
+												<span class="red"><!--{$arrErr[$key1]}--></span>
+												<span class="red"><!--{$arrErr[$key2]}--></span>
+												À«&nbsp;<input type="text" name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="<!--{$arrErr[$key1]|sfGetErrorColor}-->" size="20" class="bo20">&nbsp;&nbsp;
+												Ì¾&nbsp;<input type="text" name="<!--{$key2}-->" value="<!--{$arrForm[$key2].value|escape}-->" maxlength="<!--{$arrForm[$key2].length}-->" style="<!--{$arrErr[$key2]|sfGetErrorColor}-->" size="20" class="bo20"></td>
+											</tr>
+										</table>
+										</td>
+									</tr>
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">ÍøÍÑ¼Ô(¥«¥Ê)</td>
+										<td bgcolor="#ffffff">
+										<table border="0" cellspacing="0" cellpadding="0" summary=" ">
+											<tr>
+												<!--{assign var=key1 value="customer_family_name_kana"}-->
+												<!--{assign var=key2 value="customer_name_kana"}-->								
+												<td class="fs12">
+												<span class="red"><!--{$arrErr[$key1]}--></span>
+												<span class="red"><!--{$arrErr[$key2]}--></span>
+												¥»¥¤&nbsp;<input type="text" name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="<!--{$arrErr[$key1]|sfGetErrorColor}-->" size="20" class="bo20">&nbsp;&nbsp;
+												¥á¥¤&nbsp;<input type="text" name="<!--{$key2}-->" value="<!--{$arrForm[$key2].value|escape}-->" maxlength="<!--{$arrForm[$key2].length}-->" style="<!--{$arrErr[$key2]|sfGetErrorColor}-->" size="20" class="bo20"></td>
+											</tr>
+										</table>
+										</td>
+									</tr>
+									<tr>
+										<td class="fs12" bgcolor="#f3f3f3">¤ªÅÅÏÃÈÖ¹æ</td>
+										<td bgcolor="#ffffff">
+										<table border="0" cellspacing="0" cellpadding="0" summary=" ">
+											<tr>
+												<!--{assign var=key1 value="customer_tel"}-->
+												<td class="fs12">
+												<span class="red"><!--{$arrErr[$key1]}--></span>
+												<input type="text" name="<!--{$key1}-->" value="<!--{$arrForm[$key1].value|escape}-->" maxlength="<!--{$arrForm[$key1].length}-->" style="ime-mode: disabled; <!--{$arrErr[$key1]|sfGetErrorColor}-->" size="20" class="bo20">&nbsp;&nbsp;
+											</tr>
+										</table>
+										</td>
+									</tr>
+								</table>
+								</td>
+							</tr>
+						</table>
+						
+						<table width="666" border="0" cellspacing="0" cellpadding="0" summary=" ">
+							<tr><td height="5"></td></tr>
+							<tr>
+								<td align="center" bgcolor="#f7f5f4">
+								<table width="666" border="0" cellspacing="0" cellpadding="6" summary=" ">
+									<tr>
+										<td class="fs12st" align="center">°Ê¾å¤ÎÆâÍÆ¤Ç´Ö°ã¤¤¤Ê¤±¤ì¤Ð¡¢²¼µ­¡ÖÃíÊ¸´°Î»¥Ú¡¼¥¸¤Ø¡×¥Ü¥¿¥ó¤ò¥¯¥ê¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤¡£<br>
+										<span class="orange">¢¨²èÌÌ¤¬ÀÚ¤êÂØ¤ë¤Þ¤Ç¾¯¡¹»þ´Ö¤¬¤«¤«¤ë¾ì¹ç¤¬¤´¤¶¤¤¤Þ¤¹¤¬¡¢¤½¤Î¤Þ¤Þ¤ªÂÔ¤Á¤¯¤À¤µ¤¤¡£</span></td>
+									</tr>
+									<tr>
+										<td align="center" height="40" bgcolor="#f7f5f4">
+											<a href="#" onclick="document.form2.submit(); return false;" onmouseover="chgImgImageSubmit('/img/common/b_back_on.gif',back03)" onmouseout="chgImgImageSubmit('/img/common/b_back.gif',back03)"><img src="/img/common/b_back.gif" width="150" height="30" alt="Ìá¤ë" border="0" name="back03" id="back03"/></a><img src="/img/_.gif" width="12" height="" alt="" />
+											<input type="image" onmouseover="chgImgImageSubmit('/img/common/b_next_on.gif',this)" onmouseout="chgImgImageSubmit('/img/common/b_next.gif',this)" src="/img/common/b_next.gif" width="150" height="30" alt="¼¡¤Ø" border="0" name="next" id="next" />
+										</td>
+									</tr>
+								</table>
+
+								</td>
+							</tr>
+						</table>
+						</td>
+					</tr>
+				</table>
+				</form>
+				<form name="form2" id="form2" method="post" action="./load_payment_module.php" autocomplete="off">
+				<input type="hidden" name="mode" value="return">			
+				</form>
+				<!--¢¥MAIN CONTENTS-->
+		</td>
+	</tr>
+
+</table>
+<!--¢¥CONTENTS-->
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_credit.php
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_credit.php	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_credit.php	(revision 15412)
@@ -0,0 +1,122 @@
+<?php
+/*
+ * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ */
+require_once(MODULE_PATH . "mdl_paygent/mdl_paygent.inc");
+
+class LC_Page {
+	function LC_Page() {
+		/** É¬¤º»ØÄê¤¹¤ë **/
+		$this->tpl_mainpage = MODULE_PATH . 'mdl_paygent/paygent_credit.tpl';		// ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
+		/*
+		 session_start»þ¤Îno-cache¥Ø¥Ã¥À¡¼¤òÍÞÀ©¤¹¤ë¤³¤È¤Ç
+		 ¡ÖÌá¤ë¡×¥Ü¥¿¥ó»ÈÍÑ»þ¤ÎÍ­¸ú´ü¸ÂÀÚ¤ìÉ½¼¨¤òÍÞÀ©¤¹¤ë¡£
+		 private-no-expire:¥¯¥é¥¤¥¢¥ó¥È¤Î¥­¥ã¥Ã¥·¥å¤òµö²Ä¤¹¤ë¡£
+		*/
+		session_cache_limiter('private-no-expire');		
+	}
+}
+
+$objPage = new LC_Page();
+$objView = new SC_SiteView();
+$objCampaignSess = new SC_CampaignSession();
+$objSiteInfo = $objView->objSiteInfo;
+$arrInfo = $objSiteInfo->data;
+
+if (GC_MobileUserAgent::isMobile()) {
+	sfDispSiteError(FREE_ERROR_MSG, "", false, "¥¯¥ì¥¸¥Ã¥È·èºÑ¤Ï¡¢¤´»ÈÍÑ¤Îµ¡¼ï¤Ë¤ÏÂÐ±þ¤·¤Æ¤ª¤ê¤Þ¤»¤ó¡£", true);
+	exit;
+}
+
+// ¥Ñ¥é¥á¡¼¥¿´ÉÍý¥¯¥é¥¹
+$objFormParam = new SC_FormParam();
+// ¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½
+lfInitParam();
+// POSTÃÍ¤Î¼èÆÀ
+$objFormParam->setParam($_POST);
+
+// ¥«¡¼¥È½¸·×½èÍý
+$objPage = sfTotalCart($objPage, $objCartSess, $arrInfo);
+
+// °ì»þ¼õÃí¥Æ¡¼¥Ö¥ë¤ÎÆÉ¹þ
+$arrData = sfGetOrderTemp($uniqid);
+
+// ¥«¡¼¥È½¸·×¤ò¸µ¤ËºÇ½ª·×»»
+$arrData = sfTotalConfirm($arrData, $objPage, $objCartSess, $arrInfo);
+
+switch($_POST['mode']) {
+// Á°¤Î¥Ú¡¼¥¸¤ËÌá¤ë
+case 'return':
+	// Àµ¾ï¤Ê¿ä°Ü¤Ç¤¢¤ë¤³¤È¤òµ­Ï¿¤·¤Æ¤ª¤¯
+	$objSiteSess->setRegistFlag();
+	header("Location: " . URL_SHOP_CONFIRM);
+	exit;
+	break;
+// ¼¡¤Ø
+case 'next':
+	// ÆþÎÏÃÍ¤ÎÊÑ´¹
+	$objFormParam->convParam();
+	$objPage->arrErr = lfCheckError($arrRet);
+	// ÆþÎÏ¥¨¥é¡¼¤Ê¤·¤Î¾ì¹ç
+	if(count($objPage->arrErr) == 0) {
+		 // ÆþÎÏ¥Ç¡¼¥¿¤Î¼èÆÀ¤ò¹Ô¤¦
+    	$arrInput = $objFormParam->getHashArray();
+		// ¥¯¥ì¥¸¥Ã¥ÈÅÅÊ¸Á÷¿®
+		$arrRet = sfSendPaygentCredit($arrData, $arrInput, $uniqid);		
+		
+		// À®¸ù
+		if($arrRet['payment_id'] != "") {
+            // Àµ¾ï¤ËÅÐÏ¿¤µ¤ì¤¿¤³¤È¤òµ­Ï¿¤·¤Æ¤ª¤¯
+            $objSiteSess->setRegistFlag();
+            header("Location: " . URL_SHOP_COMPLETE);
+		} else {
+			// ¼ºÇÔ
+			$objPage->tpl_error = "Ç§¾Ú¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£¤ª¼ê¿ô¤Ç¤¹¤¬ÆþÎÏÆâÍÆ¤ò¤´³ÎÇ§¤¯¤À¤µ¤¤¡£";
+		}
+	}
+	break;
+}
+
+$objDate = new SC_Date();
+$objDate->setStartYear(RELEASE_YEAR);
+$objDate->setEndYear(RELEASE_YEAR + CREDIT_ADD_YEAR);
+$objPage->arrYear = $objDate->getZeroYear();
+$objPage->arrMonth = $objDate->getZeroMonth();
+
+// ¶¦ÄÌ¤ÎÉ½¼¨½àÈ÷
+$objPage = sfPaygentDisp($objPage, $payment_id);
+
+// »ÙÊ§²ó¿ô
+$objPage->arrPaymentClass = $arrPaymentClass;
+$objPage->arrForm = $objFormParam->getFormParamList();
+$objView->assignobj($objPage);
+// ¥Õ¥ì¡¼¥à¤òÁªÂò(¥­¥ã¥ó¥Ú¡¼¥ó¥Ú¡¼¥¸¤«¤éÁ«°Ü¤Ê¤éÊÑ¹¹)
+$objCampaignSess->pageView($objView);
+//-------------------------------------------------------------------------------------------------------
+/* ¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½ */
+function lfInitParam() {
+	global $objFormParam;
+	$objFormParam->addParam("»ÙÊ§²ó¿ô", "payment_class", INT_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK"));
+	$objFormParam->addParam("¥«¡¼¥ÉÈÖ¹æ1", "card_no01", CREDIT_NO_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"));
+	$objFormParam->addParam("¥«¡¼¥ÉÈÖ¹æ2", "card_no02", CREDIT_NO_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"));
+	$objFormParam->addParam("¥«¡¼¥ÉÈÖ¹æ3", "card_no03", CREDIT_NO_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"));
+	$objFormParam->addParam("¥«¡¼¥ÉÈÖ¹æ4", "card_no04", CREDIT_NO_LEN, "n", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "NUM_CHECK"));
+	$objFormParam->addParam("¥«¡¼¥É´ü¸ÂÇ¯", "card_year", 2, "n", array("EXIST_CHECK", "NUM_COUNT_CHECK", "NUM_CHECK"));
+	$objFormParam->addParam("¥«¡¼¥É´ü¸Â·î", "card_month", 2, "n", array("EXIST_CHECK", "NUM_COUNT_CHECK", "NUM_CHECK"));
+	$objFormParam->addParam("À«", "card_name01", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "ALPHA_CHECK"));
+	$objFormParam->addParam("Ì¾", "card_name02", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK", "ALPHA_CHECK"));
+}
+
+/* ÆþÎÏÆâÍÆ¤Î¥Á¥§¥Ã¥¯ */
+function lfCheckError() {
+	global $objFormParam;
+	// ÆþÎÏ¥Ç¡¼¥¿¤òÅÏ¤¹¡£
+	$arrRet =  $objFormParam->getHashArray();
+	$objErr = new SC_CheckError($arrRet);
+	$objErr->arrErr = $objFormParam->checkError();
+	
+	return $objErr->arrErr;
+}
+?>
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_bank.php
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_bank.php	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/paygent_bank.php	(revision 15412)
@@ -0,0 +1,134 @@
+<?php
+/*
+ * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
+ *
+ * http://www.lockon.co.jp/
+ */
+require_once(MODULE_PATH . "mdl_paygent/mdl_paygent.inc");
+
+class LC_Page {
+	function LC_Page() {
+		/** É¬¤º»ØÄê¤¹¤ë **/
+		$this->tpl_mainpage = MODULE_PATH . 'mdl_paygent/paygent_bank.tpl';		// ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
+		/*
+		 session_start»þ¤Îno-cache¥Ø¥Ã¥À¡¼¤òÍÞÀ©¤¹¤ë¤³¤È¤Ç
+		 ¡ÖÌá¤ë¡×¥Ü¥¿¥ó»ÈÍÑ»þ¤ÎÍ­¸ú´ü¸ÂÀÚ¤ìÉ½¼¨¤òÍÞÀ©¤¹¤ë¡£
+		 private-no-expire:¥¯¥é¥¤¥¢¥ó¥È¤Î¥­¥ã¥Ã¥·¥å¤òµö²Ä¤¹¤ë¡£
+		*/
+		session_cache_limiter('private-no-expire');		
+	}
+}
+
+$objPage = new LC_Page();
+$objView = new SC_SiteView();
+$objCampaignSess = new SC_CampaignSession();
+$objSiteInfo = $objView->objSiteInfo;
+$arrInfo = $objSiteInfo->data;
+
+if (GC_MobileUserAgent::isMobile()) {
+	sfDispSiteError(FREE_ERROR_MSG, "", false, "¶ä¹Ô¥Í¥Ã¥È·èºÑ¤Ï¡¢¤´»ÈÍÑ¤Îµ¡¼ï¤Ë¤ÏÂÐ±þ¤·¤Æ¤ª¤ê¤Þ¤»¤ó¡£", true);
+	exit;
+}
+
+// ¥Ñ¥é¥á¡¼¥¿´ÉÍý¥¯¥é¥¹
+$objFormParam = new SC_FormParam();
+
+// °ì»þ¼õÃí¥Æ¡¼¥Ö¥ë¤ÎÆÉ¹þ
+$arrData = sfGetOrderTemp($uniqid);
+
+// ¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½
+lfInitParam($arrData);
+// POSTÃÍ¤Î¼èÆÀ
+$objFormParam->setParam($_POST);
+
+// ¥«¡¼¥È½¸·×½èÍý
+$objPage = sfTotalCart($objPage, $objCartSess, $arrInfo);
+
+// °ì»þ¼õÃí¥Æ¡¼¥Ö¥ë¤ÎÆÉ¹þ
+$arrData = sfGetOrderTemp($uniqid);
+
+// ¥«¡¼¥È½¸·×¤ò¸µ¤ËºÇ½ª·×»»
+$arrData = sfTotalConfirm($arrData, $objPage, $objCartSess, $arrInfo);
+
+switch($_POST['mode']) {
+// Á°¤Î¥Ú¡¼¥¸¤ËÌá¤ë
+case 'return':
+	// Àµ¾ï¤Ê¿ä°Ü¤Ç¤¢¤ë¤³¤È¤òµ­Ï¿¤·¤Æ¤ª¤¯
+	$objSiteSess->setRegistFlag();
+	header("Location: " . URL_SHOP_CONFIRM);
+	exit;
+	break;
+// ¼¡¤Ø
+case 'next':
+	// ÆþÎÏÃÍ¤ÎÊÑ´¹
+	$objFormParam->convParam();
+	$objPage->arrErr = lfCheckError($arrRet);
+	// ÆþÎÏ¥¨¥é¡¼¤Ê¤·¤Î¾ì¹ç
+	if(count($objPage->arrErr) == 0) {
+		 // ÆþÎÏ¥Ç¡¼¥¿¤Î¼èÆÀ¤ò¹Ô¤¦
+    	$arrInput = $objFormParam->getHashArray();
+		// ¥¯¥ì¥¸¥Ã¥ÈÅÅÊ¸Á÷¿®
+		$arrRet = sfSendPaygentBANK($arrData, $arrInput, $uniqid);		
+		
+		// À®¸ù
+		if($arrRet['asp_url'] != "") {
+            // Àµ¾ï¤ËÅÐÏ¿¤µ¤ì¤¿¤³¤È¤òµ­Ï¿¤·¤Æ¤ª¤¯
+			$objSiteSess->setRegistFlag();
+			header("Location: " . $arrRet['asp_url']);
+		} else {
+			// ¼ºÇÔ
+			$objPage->tpl_error = "Ç§¾Ú¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£¤ª¼ê¿ô¤Ç¤¹¤¬ÆþÎÏÆâÍÆ¤ò¤´³ÎÇ§¤¯¤À¤µ¤¤¡£";
+		}
+	}
+	break;
+// ·èºÑ¥Ú¡¼¥¸¤Ø¤ÎÁ«°Ü¸å¤Î±þÅú
+default:
+	// ±þÅú¤Î¤¢¤Ã¤¿¼õÃíID¤¬¼õÃí°ì»þ¥Æ¡¼¥Ö¥ë¤ÎID¤È°ìÃ×¤·¤Æ¤¤¤ë¡£
+	if($_GET['trading_id'] == $arrData['order_id']) {
+		if($_GET['result'] == '0' && $_GET['payment_id'] != "") {
+			// Àµ¾ï¤ËÅÐÏ¿¤µ¤ì¤¿¤³¤È¤òµ­Ï¿¤·¤Æ¤ª¤¯
+            $objSiteSess->setRegistFlag();
+            header("Location: " . URL_SHOP_COMPLETE);
+		} else {
+			// ¼ºÇÔ
+			$objPage->tpl_error = "·èºÑ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£¤ª¼ê¿ô¤Ç¤¹¤¬ºÆÅÙ¤ª¼êÂ³¤­¤ò¹Ô¤¦¤«¡¢ÊÌ¤Î¤ª»ÙÊ§¤¤ÊýË¡¤òÁªÂò¤·¤Æ²¼¤µ¤¤¡£";
+		}
+	}	
+	break;
+}
+
+$objDate = new SC_Date();
+$objDate->setStartYear(RELEASE_YEAR);
+$objDate->setEndYear(RELEASE_YEAR + CREDIT_ADD_YEAR);
+$objPage->arrYear = $objDate->getZeroYear();
+$objPage->arrMonth = $objDate->getZeroMonth();
+
+// ¶¦ÄÌ¤ÎÉ½¼¨½àÈ÷
+$objPage = sfPaygentDisp($objPage, $payment_id);
+
+$objPage->arrNetBank = $arrNetBank;
+$objPage->arrForm = $objFormParam->getFormParamList();
+$objView->assignobj($objPage);
+// ¥Õ¥ì¡¼¥à¤òÁªÂò(¥­¥ã¥ó¥Ú¡¼¥ó¥Ú¡¼¥¸¤«¤éÁ«°Ü¤Ê¤éÊÑ¹¹)
+$objCampaignSess->pageView($objView);
+//-------------------------------------------------------------------------------------------------------
+/* ¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½ */
+function lfInitParam($arrData) {
+	global $objFormParam;
+	$objFormParam->addParam("ÍøÍÑ¼ÔÀ«", "customer_family_name", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_name01']);
+	$objFormParam->addParam("ÍøÍÑ¼ÔÌ¾", "customer_name", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_name02']);
+	$objFormParam->addParam("ÍøÍÑ¼ÔÀ«¥«¥Ê", "customer_family_name_kana", STEXT_LEN, "CKVa", array("EXIST_CHECK", "KANA_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_kana01']);
+	$objFormParam->addParam("ÍøÍÑ¼ÔÌ¾¥«¥Ê", "customer_name_kana", STEXT_LEN, "CKVa", array("EXIST_CHECK", "KANA_CHECK", "MAX_LENGTH_CHECK"), $arrData['order_kana02']);
+}
+
+/* ÆþÎÏÆâÍÆ¤Î¥Á¥§¥Ã¥¯ */
+function lfCheckError() {
+	global $objFormParam;
+	// ÆþÎÏ¥Ç¡¼¥¿¤òÅÏ¤¹¡£
+	$arrRet =  $objFormParam->getHashArray();
+	$objErr = new SC_CheckError($arrRet);
+	$objErr->arrErr = $objFormParam->checkError();
+	
+	return $objErr->arrErr;
+}
+?>
Index: /branches/feature-module-zeus/data/downloads/module/mdl_paygent/mdl_paygent.php
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_paygent/mdl_paygent.php	(revision 15412)
+++ /branches/feature-module-zeus/data/downloads/module/mdl_paygent/mdl_paygent.php	(revision 15412)
@@ -0,0 +1,357 @@
+<?php
+/**
+ * 
+ * @copyright	2000-2007 LOCKON CO.,LTD. All Rights Reserved.
+ * @version	CVS: $Id: mdl_epsilon.php 1.2 2006-12-04 06:08:28Z kakinaka $
+ * @link		http://www.lockon.co.jp/
+ *
+ */
+
+require_once(MODULE_PATH . "mdl_paygent/mdl_paygent.inc");
+
+$arrPayment = array(
+	1 => '¥¯¥ì¥¸¥Ã¥È',
+	2 => '¥³¥ó¥Ó¥Ë',
+	3 => 'ATM·èºÑ',
+	4 => '¶ä¹Ô¥Í¥Ã¥È'
+);
+
+$arrCredit = array(
+	1 => 'VISA, MASTER, Diners',
+	2 => 'JCB, AMEX'
+);
+	
+//¥Ú¡¼¥¸´ÉÍý¥¯¥é¥¹
+class LC_Page {
+	//¥³¥ó¥¹¥È¥é¥¯¥¿
+	function LC_Page() {
+		//¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È¤Î»ØÄê
+		$this->tpl_mainpage = MODULE_PATH . 'mdl_paygent/mdl_paygent.tpl';
+		$this->tpl_subtitle = '¥Ú¥¤¥¸¥§¥ó¥È·èºÑ¥â¥¸¥å¡¼¥ë';
+		global $arrPayment;
+		$this->arrPayment = $arrPayment;
+		global $arrCredit;
+		$this->arrCredit = $arrCredit;
+		global $arrConvenience;
+		$this->arrConvenience = $arrConvenience;
+	}
+}
+$objPage = new LC_Page();
+$objView = new SC_AdminView();
+$objQuery = new SC_Query();
+
+// ¥³¥ó¥Ó¥ËÆþ¶â¥Á¥§¥Ã¥¯
+lfEpsilonCheck();
+
+// Ç§¾Ú³ÎÇ§
+$objSess = new SC_Session();
+sfIsSuccess($objSess);
+
+// ¥Ñ¥é¥á¡¼¥¿´ÉÍý¥¯¥é¥¹
+$objFormParam = new SC_FormParam();
+$objFormParam = lfInitParam($objFormParam);
+// POSTÃÍ¤Î¼èÆÀ
+$objFormParam->setParam($_POST);
+
+// ÈÆÍÑ¹àÌÜ¤òÄÉ²Ã(É¬¿Ü¡ª¡ª)
+sfAlterMemo();
+
+switch($_POST['mode']) {
+case 'edit':
+	// ÆþÎÏ¥¨¥é¡¼È½Äê
+	$objPage->arrErr = lfCheckError();
+
+	// ¥¨¥é¡¼¤Ê¤·¤Î¾ì¹ç¤Ë¤Ï¥Ç¡¼¥¿¤ò¹¹¿·	
+	if(count($objPage->arrErr) == 0) {
+		// ¥Ç¡¼¥¿¹¹¿·
+		lfUpdPaymentDB(MDL_PAYGENT_ID);
+		
+		// javascript¼Â¹Ô
+		$objPage->tpl_onload = 'alert("ÅÐÏ¿´°Î»¤·¤Þ¤·¤¿¡£\n´ðËÜ¾ðÊó¡ä»ÙÊ§ÊýË¡ÀßÄê¤è¤ê¾ÜºÙÀßÄê¤ò¤·¤Æ¤¯¤À¤µ¤¤¡£"); window.close();';
+	}
+	break;
+case 'module_del':
+	// ÈÆÍÑ¹àÌÜ¤ÎÂ¸ºß¥Á¥§¥Ã¥¯
+	if(sfColumnExists("dtb_payment", "memo01")){
+		// ¥Ç¡¼¥¿¤Îºï½ü¥Õ¥é¥°¤ò¤¿¤Æ¤ë
+		$objQuery->query("UPDATE dtb_payment SET del_flg = 1 WHERE module_id = ?", array(MDL_EPSILON_ID));
+	}
+	break;
+default:
+	// ¥Ç¡¼¥¿¤Î¥í¡¼¥É
+	lfLoadData();	
+	break;
+}
+
+$objPage->arrForm = $objFormParam->getFormParamList();
+
+$objView->assignobj($objPage);					//ÊÑ¿ô¤ò¥Æ¥ó¥×¥ì¡¼¥È¤Ë¥¢¥µ¥¤¥ó¤¹¤ë
+$objView->display($objPage->tpl_mainpage);		//¥Æ¥ó¥×¥ì¡¼¥È¤Î½ÐÎÏ
+//-------------------------------------------------------------------------------------------------------
+/* ¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½ */
+function lfInitParam($objFormParam) {
+    $arrSiteInfo = sf_getBasisData();
+    // ¥Ç¥Õ¥©¥ë¥ÈÃÍ
+    $arrDefault  = array(
+        'conveni_limit_date' => 15,
+        'atm_limit_date'     => 30,
+        'payment_detail' => $arrSiteInfo['shop_kana'],
+        'claim_kanji'    => $arrSiteInfo['shop_kana'],
+        'claim_kana'     => $arrSiteInfo['shop_kana'],
+        'asp_payment_term' => 7,
+    );
+	$objFormParam->addParam("¥Þ¡¼¥Á¥ã¥ó¥ÈID", "merchant_id", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK"));
+	$objFormParam->addParam("ÀÜÂ³ID", "connect_id", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK"));
+	$objFormParam->addParam("ÀÜÂ³¥Ñ¥¹¥ï¡¼¥É", "connect_password", STEXT_LEN, "KVa", array("EXIST_CHECK", "MAX_LENGTH_CHECK"));
+	$objFormParam->addParam("»ÙÊ§´ü¸ÂÆü", "conveni_limit_date", 2, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK"), $arrDefault['conveni_limit_date']);
+	$objFormParam->addParam("»ÙÊ§´ü¸ÂÆü", "atm_limit_date", 2, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK"), $arrDefault['atm_limit_date']);
+	$objFormParam->addParam("É½¼¨Å¹ÊÞÌ¾(¥«¥Ê)", "payment_detail", 12, "KVa", array("MAX_LENGTH_CHECK", "KANA_CHECK"), $arrDefault['payment_detail']);
+	$objFormParam->addParam("»ÙÊ§´ü¸ÂÆü", "asp_payment_term", 2, "n", array("MAX_LENGTH_CHECK", "NUM_CHECK"), $arrDefault['asp_payment_term']);
+	$objFormParam->addParam("É½¼¨Å¹ÊÞÌ¾(Á´³Ñ)", "claim_kanji", 12, "KVa", array("MAX_LENGTH_CHECK"), $arrDefault['claim_kanji']);
+	$objFormParam->addParam("É½¼¨Å¹ÊÞÌ¾(¥«¥Ê)", "claim_kana", 12, "KVa", array("MAX_LENGTH_CHECK", "KANA_CHECK"), $arrDefault['claim_kana']);
+	$objFormParam->addParam("ÍøÍÑ·èºÑ", "payment", "", "", array("EXIST_CHECK"));
+	$objFormParam->addParam("·èºÑ¥Ú¡¼¥¸ÍÑ¥³¥Ô¡¼¥é¥¤¥È(È¾³Ñ±Ñ¿ô)", "copy_right", 64, "KVa", array("MAX_LENGTH_CHECK"));
+	$objFormParam->addParam("·èºÑ¥Ú¡¼¥¸ÍÑÀâÌÀÊ¸(Á´³Ñ)", "free_memo", 128, "KVa", array("MAX_LENGTH_CHECK"));	
+	return $objFormParam;
+}
+	
+// ¥¨¥é¡¼¥Á¥§¥Ã¥¯¤ò¹Ô¤¦
+function lfCheckError(){
+	global $objFormParam;
+	$arrErr = $objFormParam->checkError();
+		
+	if($_POST['conveni_limit_date'] != "" && !($_POST['conveni_limit_date'] >= 1 &&  $_POST['conveni_limit_date'] <= 60)) {
+			$arrErr['conveni_limit_date'] = "¢¨ »ÙÊ§´ü¸ÂÆü¤Ï¡¢1¡Á60Æü¤Þ¤Ç¤Î´Ö¤ÇÀßÄê¤·¤Æ¤¯¤À¤µ¤¤¡£<br>";
+	}
+	if($_POST['atm_limit_date'] != "" && !($_POST['atm_limit_date'] >= 0 &&  $_POST['atm_limit_date'] <= 60)) {
+			$arrErr['atm_limit_date'] = "¢¨ »ÙÊ§´ü¸ÂÆü¤Ï¡¢0¡Á60Æü¤Þ¤Ç¤Î´Ö¤ÇÀßÄê¤·¤Æ¤¯¤À¤µ¤¤¡£<br>";
+	}
+    if(isset($_POST['payment_detail']) && $_POST['payment_detail'] == '') {
+            $arrErr['payment_detail'] = "¢¨ »ÙÊ§ÀâÌÀÊ¸¡Ê¥«¥Ê¡Ë¤òÆþÎÏ¤·¤Æ¤¯¤À¤µ¤¤¡£<br>";
+    }
+    if(isset($_POST['claim_kanji']) && $_POST['claim_kanji'] == '') {
+            $arrErr['claim_kanji'] = "¢¨ »ÙÊ§ÀâÌÀÊ¸¡Ê´Á»ú¡Ë¤òÆþÎÏ¤·¤Æ¤¯¤À¤µ¤¤¡£<br>";
+    }
+    if(isset($_POST['claim_kana']) && $_POST['claim_kana'] == '') {
+            $arrErr['claim_kana'] = "¢¨ »ÙÊ§ÀâÌÀÊ¸¡Ê¥«¥Ê¡Ë¤òÆþÎÏ¤·¤Æ¤¯¤À¤µ¤¤¡£<br>";
+    }
+	
+    
+    
+    /** ¶¦ÄÌÅÅÊ¸ **/	
+	// ¥Þ¡¼¥Á¥ã¥ó¥ÈID
+	$arrParam['merchant_id'] = $objFormParam->getValue('merchant_id');
+	// ÀÜÂ³ID
+	$arrParam['connect_id'] = $objFormParam->getValue('connect_id');
+	// ÀÜÂ³¥Ñ¥¹¥ï¡¼¥É
+	$arrParam['connect_password'] = $objFormParam->getValue('connect_password');
+
+	// ÀÜÂ³¥Æ¥¹¥È¤ò¼Â¹Ô¤¹¤ë¡£
+	if(!sfPaygentTest($arrParam)) {
+		$arrErr['err'] = "¢¨ ÀÜÂ³»î¸³¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£";
+	}	
+	
+	return $arrErr;
+}
+
+// ÅÐÏ¿¥Ç¡¼¥¿¤òÆÉ¤ß¹þ¤à
+function lfLoadData(){
+	global $objFormParam;
+	
+	//¥Ç¡¼¥¿¤ò¼èÆÀ
+	$arrRet = sfGetPaymentDB(MDL_PAYGENT_ID, "AND del_flg = '0'");
+	$objFormParam->setParam($arrRet[0]);
+	
+	
+	// ²èÌÌÉ½¼¨ÍÑ¤Ë¥Ç¡¼¥¿¤òÊÑ´¹
+	$arrDisp = array();
+	
+	foreach($arrRet as $key => $val){
+		// ÍøÍÑ·èºÑ¤òÉ½¼¨ÍÑ¤ËÊÑ´¹
+		$arrDisp["payment"][$key] = $val["payment"];
+		
+		switch($val['payment']) {
+		// ¥¯¥ì¥¸¥Ã¥È
+		case '1':
+			break;
+		// ¥³¥ó¥Ó¥Ë
+		case '2':
+			$arrParam = unserialize($val['other_param']);
+			$arrDisp['conveni_limit_date'] = $arrParam['payment_limit_date'];
+			break;
+		// ATM·èºÑ
+		case '3':
+			$arrParam = unserialize($val['other_param']);
+			$arrDisp['payment_detail'] = $arrParam['payment_detail'];
+			$arrDisp['atm_limit_date'] = $arrParam['payment_limit_date'];
+			break;
+		// ¥Í¥Ã¥È¥Ð¥ó¥¯
+		case '4':
+			$arrParam = unserialize($val['other_param']);
+			$arrDisp['claim_kana'] = $arrParam['claim_kana'];
+			$arrDisp['claim_kanji'] = $arrParam['claim_kanji'];
+			$arrDisp['asp_payment_term'] = $arrParam['asp_payment_term'];
+			$arrDisp['copy_right'] = $arrParam['copy_right'];
+			$arrDisp['free_memo'] = $arrParam['free_memo'];
+			break;					
+		}
+	}	
+	
+	$objFormParam->setParam($arrDisp);
+}
+
+// ¥Ç¡¼¥¿¤Î¹¹¿·½èÍý
+function lfUpdPaymentDB($module_id){
+	global $objQuery;
+	global $objSess;
+		
+	// ´ØÏ¢¤¹¤ë»ÙÊ§¤¤ÊýË¡¤Îdel_flg¤òºï½ü¤Ë¤·¤Æ¤ª¤¯
+	$del_sql = "UPDATE dtb_payment SET del_flg = 1 WHERE module_id = ? ";
+	$arrDel = array($module_id);
+	$objQuery->query($del_sql, $arrDel);
+	
+	// ¥Ç¡¼¥¿ÅÐÏ¿
+	foreach($_POST["payment"] as $key => $val){
+		// ¥é¥ó¥¯¤ÎºÇÂçÃÍ¤ò¼èÆÀ¤¹¤ë
+		$max_rank = $objQuery->getone("SELECT max(rank) FROM dtb_payment");
+
+		// »ÙÊ§ÊýË¡¥Ç¡¼¥¿¤ò¼èÆÀ			
+		$arrPaymentData = sfGetPaymentDB(MDL_PAYGENT_ID, "AND memo03 = ?", array($val));
+		
+		// ¥¯¥ì¥¸¥Ã¥È¤Ë¥Á¥§¥Ã¥¯¤¬Æþ¤Ã¤Æ¤¤¤ì¤Ð¥¯¥ì¥¸¥Ã¥È¤òÅÐÏ¿¤¹¤ë
+		if($val == 1){
+			$arrData = array(			
+				"payment_method" => "PAYGENT¥¯¥ì¥¸¥Ã¥È"
+				,"fix" => 3
+				,"creator_id" => $objSess->member_id
+				,"create_date" => "now()"
+				,"update_date" => "now()"
+				,"upper_rule" => 500000
+				,"module_id" => $module_id
+				,"module_path" => MODULE_PATH . "mdl_paygent/paygent_credit.php"
+				,"memo01" => $_POST["merchant_id"]
+				,"memo02" => $_POST["connect_id"]
+				,"memo03" => $val
+				,"memo04" => $_POST["connect_password"]
+				,"memo05" => ""
+				,"del_flg" => "0"
+				,"charge_flg" => "2"
+				,"upper_rule_max" => CHARGE_MAX
+				
+			);
+		}
+		
+		// ¥³¥ó¥Ó¥Ë¤Ë¥Á¥§¥Ã¥¯¤¬Æþ¤Ã¤Æ¤¤¤ì¤Ð¥³¥ó¥Ó¥Ë¤òÅÐÏ¿¤¹¤ë
+		if($val == 2){
+			$arrParam = array();
+			$arrParam['payment_limit_date'] = $_POST['conveni_limit_date'];
+			
+			$arrData = array(
+				"payment_method" => "PAYGENT¥³¥ó¥Ó¥Ë"
+				,"fix" => 3
+				,"creator_id" => $objSess->member_id
+				,"create_date" => "now()"
+				,"update_date" => "now()"
+				,"upper_rule" => $upper_rule
+				,"module_id" => $module_id
+				,"module_path" => MODULE_PATH . "mdl_paygent/paygent_conveni.php"
+				,"memo01" => $_POST["merchant_id"]
+				,"memo02" => $_POST["connect_id"]
+				,"memo03" => $val
+				,"memo04" => $_POST["connect_password"]
+				,"memo05" => serialize($arrParam)
+				,"del_flg" => "0"
+				,"charge_flg" => "1"
+				,"upper_rule_max" => $upper_rule_max
+			);
+		}
+		
+		// ATM·èºÑ¤Ë¥Á¥§¥Ã¥¯¤¬Æþ¤Ã¤Æ¤¤¤ì¤ÐATM·èºÑ¤òÅÐÏ¿¤¹¤ë
+		if($val == 3){
+			$arrParam = array();
+			$arrParam['payment_detail'] = $_POST['payment_detail'];
+			$arrParam['payment_limit_date'] = $_POST['atm_limit_date'];
+			
+			$arrData = array(
+				"payment_method" => "PAYGENTATM·èºÑ"
+				,"fix" => 3
+				,"creator_id" => $objSess->member_id
+				,"create_date" => "now()"
+				,"update_date" => "now()"
+				,"upper_rule" => $upper_rule
+				,"module_id" => $module_id
+				,"module_path" => MODULE_PATH . "mdl_paygent/paygent_atm.php"
+				,"memo01" => $_POST["merchant_id"]
+				,"memo02" => $_POST["connect_id"]
+				,"memo03" => $val
+				,"memo04" => $_POST["connect_password"]
+				,"memo05" => serialize($arrParam)
+				,"del_flg" => "0"
+				,"charge_flg" => "1"
+				,"upper_rule_max" => $upper_rule_max
+			);
+		}
+		
+		// ¶ä¹ÔNET¤Ë¥Á¥§¥Ã¥¯¤¬Æþ¤Ã¤Æ¤¤¤ì¤ÐATM·èºÑ¤òÅÐÏ¿¤¹¤ë
+		if($val == 4){
+			$arrParam = array();
+			$arrParam['claim_kana'] = $_POST['claim_kana'];
+			$arrParam['claim_kanji'] = $_POST['claim_kanji'];
+			$arrParam['asp_payment_term'] = $_POST['asp_payment_term'];
+			$arrParam['copy_right'] = $_POST['copy_right'];
+			$arrParam['free_memo'] = $_POST['free_memo'];
+			$arrData = array(
+				"payment_method" => "PAYGENT¶ä¹Ô¥Í¥Ã¥È"
+				,"fix" => 3
+				,"creator_id" => $objSess->member_id
+				,"create_date" => "now()"
+				,"update_date" => "now()"
+				,"upper_rule" => $upper_rule
+				,"module_id" => $module_id
+				,"module_path" => MODULE_PATH . "mdl_paygent/paygent_bank.php"
+				,"memo01" => $_POST["merchant_id"]
+				,"memo02" => $_POST["connect_id"]
+				,"memo03" => $val
+				,"memo04" => $_POST["connect_password"]
+				,"memo05" => serialize($arrParam)
+				,"del_flg" => "0"
+				,"charge_flg" => "1"
+				,"upper_rule_max" => $upper_rule_max
+			);
+		}
+		
+		
+		// ¥Ç¡¼¥¿¤¬Â¸ºß¤·¤Æ¤¤¤ì¤ÐUPDATE¡¢Ìµ¤±¤ì¤ÐINSERT
+		if(count($arrPaymentData) > 0){
+			$objQuery->update("dtb_payment", $arrData, " module_id = '" . $module_id . "' AND memo03 = '" . $val ."'");
+		}else{
+			$arrData["rank"] = $max_rank + 1;
+			$objQuery->insert("dtb_payment", $arrData);
+		}
+	}
+}
+
+// ¥³¥ó¥Ó¥ËÆþ¶â³ÎÇ§½èÍý
+function lfEpsilonCheck(){
+	global $objQuery;
+	
+	// trans_code ¤ò»ØÄê¤µ¤ì¤Æ¤¤¤Æ³î¤Ä¡¢Æþ¶âºÑ¤ß¤Î¾ì¹ç
+	if($_POST["trans_code"] != "" and $_POST["paid"] == 1 and $_POST["order_number"] != ""){
+		// ¥¹¥Æ¡¼¥¿¥¹¤òÆþ¶âºÑ¤ß¤ËÊÑ¹¹¤¹¤ë
+		$sql = "UPDATE dtb_order SET status = 6, update_date = now() WHERE order_id = ? AND memo04 = ? ";
+		$objQuery->query($sql, array($_POST["order_number"], $_POST["trans_code"]));
+		
+		// POST¤ÎÆâÍÆ¤òÁ´¤Æ¥í¥°ÊÝÂ¸
+		$log_path = DATA_PATH . "logs/epsilon.log";
+		gfPrintLog("epsilon conveni start---------------------------------------------------------", $log_path);
+		foreach($_POST as $key => $val){
+			gfPrintLog( "\t" . $key . " => " . $val, $log_path);
+		}
+		gfPrintLog("epsilon conveni end-----------------------------------------------------------", $log_path);
+		
+		//±þÅú·ë²Ì¤òÉ½¼¨
+		echo "1";
+	}
+}
+
+?>
Index: anches/feature-module-zeus/data/downloads/module/mdl_zero/recv.php
===================================================================
--- /branches/feature-module-zeus/data/downloads/module/mdl_zero/recv.php	(revision 15405)
+++ 	(revision )
@@ -1,452 +1,0 @@
-<?php
-
-$objSiteSess = new SC_SiteSession();
-$objCartSess = new SC_CartSession();
-$objCampaignSess = new SC_CampaignSession();
-$objCustomer = new SC_Customer();
-
-$objSiteInfo = $objView->objSiteInfo;
-$arrInfo = $objSiteInfo->data;
-
-$log_path = DATA_PATH . "logs/zero.log";
-gfPrintLog("**************************************** zero start ****************************************", $log_path);
-
-$arrResult = $_GET;
-// GET¤ÎÆâÍÆ¤òÁ´¤Æ¥í¥°ÊÝÂ¸
-foreach($arrResult as $key => $val){
-	gfPrintLog( "\t" . $key . " => " . $val, $log_path);
-}
-
-$objQuery->begin();
-$order_id = lfDoComplete($objQuery, $arrResult);
-$objQuery->commit();
-
-// ´°Î»¥á¡¼¥ëÁ÷¿®
-if(sfIsInt($order_id)) {
-
-    $order_email = $objQuery->select("order_email", "dtb_order", "order_id = ?", array($order_id));
-    
-    //ÅÐÏ¿¤µ¤ì¤Æ¤¤¤ë¥á¡¼¥ë¥¢¥É¥ì¥¹¤¬·ÈÂÓ¤«PC¤«¤Ë±þ¤¸¤ÆÃíÊ¸´°Î»¥á¡¼¥ë¤Î¥Æ¥ó¥×¥ì¡¼¥È¤òÊÑ¤¨¤ë
-    if(ereg("(ezweb.ne.jp$|docomo.ne.jp$|softbank.ne.jp$|vodafone.ne.jp$)",$order_email[0]['order_email'])){
-        sfSendOrderMail($order_id, '1',"","");
-    }else{
-      sfSendOrderMail($order_id, '0',"","");
-    }
-    print("OK");
-}else{
-    // ¥¨¥é¡¼¤Î¾ì¹ç¼õ¿®¥Ç¡¼¥¿¤òÁ÷¿®
-    gfPrintLog("!!!!!!!!!!!! zero error !!!!!!!!!!!!!!", $log_path);
-    ob_start();
-    print($order_id . "\n");
-    print_r($arrResult);
-    $msg = ob_get_contents();
-    ob_end_clean();
-    mb_send_mail("kakinaka@lockon.co.jp", "¥¼¥í¥¯¥ì¥¸¥Ã¥È¥¨¥é¡¼:" . $arrResult['sendid'], $msg . "\n");
-    print("NG");
-}
-gfPrintLog("**************************************** zero end ****************************************", $log_path);
-//---------------------------------------------------------------------------------------------------------------------------------
-// ´°Î»½èÍý
-function lfDoComplete($objQuery, $arrResult) {
-	global $objCartSess;
-	global $objSiteSess;
-    $objCampaignSess = new SC_CampaignSession();
-    $objCustomer = new SC_Customer();
-	global $arrInfo;
-    
-    gfprintlog($objCustomer->isLoginSuccess(),DATA_PATH . "logs/zero.log");
-    
-    // sendid ¤ÎÃÍ¤ò¶èÀÚ¤ë
-    $arrSendid = preg_split("/\\".SEND_PARAM_DELIMITER."/", $arrResult["sendid"]);
-    
-    $uniqid = $arrSendid[0];          // order_temp_id
-    $money =  $arrResult["money"];    // payment_total
-
-    $arrCrilentIP = $objQuery->select("memo02, memo04", "dtb_payment", "payment_id = ? and del_flg = 0", array($arrSendid[1]));
-    //$client_id = $objQuery->getAll("SELECT memo04 FROM dtb_payment WHERE payment_id = ? and del_flg = 0", array($arrSendid[1]));
-    
-    // ²ÃÌÁÅ¹¥³¡¼¥É¤¬°ã¤¦¾ì¹ç¤Ë¤Ï¥¨¥é¡¼
-    if(count($arrResult)){
-        if(in_array($arrResult["clientip"], $arrCrilentIP)) return "²ÃÌÁÅ¹¥³¡¼¥É¤¬°ã¤¤¤Þ¤¹¡£";
-    }else{
-        return "²ÃÌÁÅ¹¥³¡¼¥É¤¬°ã¤¤¤Þ¤¹¡£";
-    }
-    
-	// °ì»þ¼õÃí¥Æ¡¼¥Ö¥ë¤ÎÆÉ¹þ
-	$arrData = sfGetOrderTemp($uniqid);
-    
-    // °ì»þ¼õÃí¥Æ¡¼¥Ö¥ë¤«¤é¥Ç¡¼¥¿¤¬¼èÆÀ¤Ç¤­¤Ê¤±¤ì¤Ð¡¢¥¨¥é¡¼
-    if(count($arrData) <= 0) return "¼õÃí°ì»þ¥Æ¡¼¥Ö¥ë¤Ë»ØÄê¤·¤¿ID¤Î¥Ç¡¼¥¿¤¬¤¢¤ê¤Þ¤»¤ó¡£";
-    
-    // ·èºÑ´°Î»ºÑ¤ß¤Ç¤¢¤ì¤Ð¥¨¥é¡¼
-    if($arrData["del_flg"] == 1) return "»ØÄê¤·¤¿ID¤Î¥Ç¡¼¥¿¤Ï·èºÑ´°Î»ºÑ¤ß¤Ç¤¹¡£";
-    
-    // °ì»þ¼õÃí¥Æ¡¼¥Ö¥ë¤Î¤ª»ÙÊ§¤¤¹ç·×¤È¡¢¥¼¥í¤«¤éÊÖ¤Ã¤Æ¤­¤¿¶â³Û¤È¤¬°ã¤¦¾ì¹ç¤Ï¥¨¥é¡¼
-    if($arrData["payment_total"] != $money) return "555¤ª»ÙÊ§¤¤¶â³Û¤¬°ã¤¤¤Þ¤¹¡£";
-    
-    // ¥»¥Ã¥·¥ç¥ó¾ðÊó¤ÎÉüµ¢
-    $_SESSION = unserialize($arrData["session"]);
-
-	// ²ñ°÷¾ðÊóÅÐÏ¿½èÍý
-	if ($objCustomer->isLoginSuccess()) {
-		// ¿·¤ªÆÏ¤±Àè¤ÎÅÐÏ¿
-		lfSetNewAddr($uniqid, $objCustomer->getValue('customer_id'));
-		// ¹ØÆþ½¸·×¤ò¸ÜµÒ¥Æ¡¼¥Ö¥ë¤ËÈ¿±Ç
-		lfSetCustomerPurchase($objCustomer->getValue('customer_id'), $arrData, $objQuery);
-	} else {
-		//¹ØÆþ»þ¶¯À©²ñ°÷ÅÐÏ¿
-		switch(PURCHASE_CUSTOMER_REGIST) {
-		//Ìµ¸ú
-		case '0':
-			// ¹ØÆþ»þ²ñ°÷ÅÐÏ¿
-			if($arrData['member_check'] == '1') {
-				// ²¾²ñ°÷ÅÐÏ¿
-				$customer_id = lfRegistPreCustomer($arrData, $arrInfo);
-				// ¹ØÆþ½¸·×¤ò¸ÜµÒ¥Æ¡¼¥Ö¥ë¤ËÈ¿±Ç
-				lfSetCustomerPurchase($customer_id, $arrData, $objQuery);
-			}
-			break;
-		//Í­¸ú
-		case '1':
-			// ²¾²ñ°÷ÅÐÏ¿
-			$customer_id = lfRegistPreCustomer($arrData, $arrInfo);
-			// ¹ØÆþ½¸·×¤ò¸ÜµÒ¥Æ¡¼¥Ö¥ë¤ËÈ¿±Ç
-			lfSetCustomerPurchase($customer_id, $arrData, $objQuery);
-			break;
-		}
-	}
-
-	// °ì»þ¥Æ¡¼¥Ö¥ë¤ò¼õÃí¥Æ¡¼¥Ö¥ë¤Ë³ÊÇ¼¤¹¤ë
-	$order_id = lfRegistOrder($objQuery, $arrData);
-	// ¥«¡¼¥È¾¦ÉÊ¤ò¼õÃí¾ÜºÙ¥Æ¡¼¥Ö¥ë¤Ë³ÊÇ¼¤¹¤ë
-	lfRegistOrderDetail($objQuery, $order_id, $objCartSess);
-	// ¼õÃí°ì»þ¥Æ¡¼¥Ö¥ë¤Î¾ðÊó¤òºï½ü¤¹¤ë¡£
-	lfDeleteTempOrder($objQuery, $uniqid);
-	// ¥­¥ã¥ó¥Ú¡¼¥ó¤«¤é¤ÎÁ«°Ü¤Î¾ì¹çÅÐÏ¿¤¹¤ë¡£
-	if($objCampaignSess->getIsCampaign()) {
-		lfRegistCampaignOrder($objQuery, $objCampaignSess, $order_id);
-	}
-	
-	return $order_id;
-}
-
-// ²ñ°÷ÅÐÏ¿¡Ê²¾ÅÐÏ¿¡Ë
-function lfRegistPreCustomer($arrData, $arrInfo) {
-	// ¹ØÆþ»þ¤Î²ñ°÷ÅÐÏ¿
-	$sqlval['name01'] = $arrData['order_name01'];
-	$sqlval['name02'] = $arrData['order_name02'];
-	$sqlval['kana01'] = $arrData['order_kana01'];
-	$sqlval['kana02'] = $arrData['order_kana02'];
-	$sqlval['zip01'] = $arrData['order_zip01'];
-	$sqlval['zip02'] = $arrData['order_zip02'];
-	$sqlval['pref'] = $arrData['order_pref'];
-	$sqlval['addr01'] = $arrData['order_addr01'];
-	$sqlval['addr02'] = $arrData['order_addr02'];
-	$sqlval['email'] = $arrData['order_email'];
-	$sqlval['tel01'] = $arrData['order_tel01'];
-	$sqlval['tel02'] = $arrData['order_tel02'];
-	$sqlval['tel03'] = $arrData['order_tel03'];
-	$sqlval['fax01'] = $arrData['order_fax01'];
-	$sqlval['fax02'] = $arrData['order_fax02'];
-	$sqlval['fax03'] = $arrData['order_fax03'];
-	$sqlval['sex'] = $arrData['order_sex'];
-	$sqlval['password'] = $arrData['password'];
-	$sqlval['reminder'] = $arrData['reminder'];
-	$sqlval['reminder_answer'] = $arrData['reminder_answer'];
-	
-	// ¥á¥ë¥Þ¥¬ÇÛ¿®ÍÑ¥Õ¥é¥°¤ÎÈ½Äê
-	switch($arrData['mail_flag']) {
-	case '1':	// HTML¥á¡¼¥ë
-		$mail_flag = 4;
-		break;
-	case '2':	// TEXT¥á¡¼¥ë
-		$mail_flag = 5;
-		break;
-	case '3':	// ´õË¾¤Ê¤·
-		$mail_flag = 6;
-		break;
-	default:
-		$mail_flag = 6;
-		break;
-	}
-	// ¥á¥ë¥Þ¥¬¥Õ¥é¥°
-	$sqlval['mailmaga_flg'] = $mail_flag;
-		
-	// ²ñ°÷²¾ÅÐÏ¿
-	$sqlval['status'] = 1;
-	// URLÈ½ÄêÍÑ¥­¡¼
-	$sqlval['secret_key'] = sfGetUniqRandomId("t"); 
-	
-	$objQuery = new SC_Query();
-	$sqlval['create_date'] = "now()";
-	$sqlval['update_date'] = "now()";
-	$objQuery->insert("dtb_customer", $sqlval);
-	
-	// ¸ÜµÒID¤Î¼èÆÀ
-	$arrRet = $objQuery->select("customer_id", "dtb_customer", "secret_key = ?", array($sqlval['secret_key']));
-	$customer_id = $arrRet[0]['customer_id'];
-	
-	//¡¡²¾ÅÐÏ¿´°Î»¥á¡¼¥ëÁ÷¿®
-	$objMailPage = new LC_Page();
-	$objMailPage->to_name01 = $arrData['order_name01'];
-	$objMailPage->to_name02 = $arrData['order_name02'];
-	$objMailPage->CONF = $arrInfo;
-	$objMailPage->uniqid = $sqlval['secret_key'];
-	$objMailView = new SC_SiteView();
-	$objMailView->assignobj($objMailPage);
-	$body = $objMailView->fetch("mail_templates/customer_mail.tpl");
-	
-	$objMail = new GC_SendMail();
-	$objMail->setItem(
-						''										//¡¡°¸Àè
-						, sfMakeSubject("²ñ°÷ÅÐÏ¿¤Î¤´³ÎÇ§")		//¡¡¥µ¥Ö¥¸¥§¥¯¥È
-						, $body									//¡¡ËÜÊ¸
-						, $arrInfo['email03']					//¡¡ÇÛÁ÷¸µ¥¢¥É¥ì¥¹
-						, $arrInfo['shop_name']					//¡¡ÇÛÁ÷¸µ¡¡Ì¾Á°
-						, $arrInfo["email03"]					//¡¡reply_to
-						, $arrInfo["email04"]					//¡¡return_path
-						, $arrInfo["email04"]					//  Errors_to
-						, $arrInfo["email01"]					//  Bcc
-														);
-	// °¸Àè¤ÎÀßÄê
-	$name = $arrData['order_name01'] . $arrData['order_name02'] ." ÍÍ";
-	$objMail->setTo($arrData['order_email'], $name);			
-	$objMail->sendMail();
-	
-	return $customer_id;
-}
-
-// ¼õÃí¥Æ¡¼¥Ö¥ë¤ØÅÐÏ¿
-function lfRegistOrder($objQuery, $arrData) {
-    $objCampaignSess = new SC_CampaignSession();
-	$sqlval = $arrData;
-
-	// ¼õÃí¥Æ¡¼¥Ö¥ë¤Ë½ñ¤­¹þ¤Þ¤Ê¤¤Îó¤ò½üµî
-	unset($sqlval['mailmaga_flg']);		// ¥á¥ë¥Þ¥¬¥Á¥§¥Ã¥¯
-	unset($sqlval['deliv_check']);		// ÊÌ¤Î¤ªÆÏ¤±Àè¥Á¥§¥Ã¥¯
-	unset($sqlval['point_check']);		// ¥Ý¥¤¥ó¥ÈÍøÍÑ¥Á¥§¥Ã¥¯
-	unset($sqlval['member_check']);		// ¹ØÆþ»þ²ñ°÷¥Á¥§¥Ã¥¯
-	unset($sqlval['password']);			// ¥í¥°¥¤¥ó¥Ñ¥¹¥ï¡¼¥É
-	unset($sqlval['reminder']);			// ¥ê¥Þ¥¤¥ó¥À¡¼¼ÁÌä
-	unset($sqlval['reminder_answer']);	// ¥ê¥Þ¥¤¥ó¥À¡¼Åú¤¨
-	unset($sqlval['mail_flag']);		// ¥á¡¼¥ë¥Õ¥é¥°
-	unset($sqlval['session']);		    // ¥»¥Ã¥·¥ç¥ó¾ðÊó
-	
-	// ÃíÊ¸¥¹¥Æ¡¼¥¿¥¹:»ØÄê¤¬Ìµ¤±¤ì¤Ð¿·µ¬¼õÉÕ¤ËÀßÄê
-	if($sqlval["status"] == ""){
-		$sqlval['status'] = '1';			
-	}
-	
-	// ÊÌ¤Î¤ªÆÏ¤±Àè¤ò»ØÄê¤·¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢ÇÛÁ÷Àè¤ËÅÐÏ¿½»½ê¤ò¥³¥Ô¡¼¤¹¤ë¡£
-	if($arrData["deliv_check"] == "-1") {
-		$sqlval['deliv_name01'] = $arrData['order_name01'];
-		$sqlval['deliv_name02'] = $arrData['order_name02'];
-		$sqlval['deliv_kana01'] = $arrData['order_kana01'];
-		$sqlval['deliv_kana02'] = $arrData['order_kana02'];
-		$sqlval['deliv_pref'] = $arrData['order_pref'];
-		$sqlval['deliv_zip01'] = $arrData['order_zip01'];
-		$sqlval['deliv_zip02'] = $arrData['order_zip02'];
-		$sqlval['deliv_addr01'] = $arrData['order_addr01'];
-		$sqlval['deliv_addr02'] = $arrData['order_addr02'];
-		$sqlval['deliv_tel01'] = $arrData['order_tel01'];
-		$sqlval['deliv_tel02'] = $arrData['order_tel02'];
-		$sqlval['deliv_tel03'] = $arrData['order_tel03'];
-	}
-	
-	$order_id = $arrData['order_id'];		// ¥ª¡¼¥À¡¼ID
-	$sqlval['create_date'] = 'now()';		// ¼õÃíÆü
-	
-	// ¥­¥ã¥ó¥Ú¡¼¥óID
-	if($objCampaignSess->getIsCampaign()) $sqlval['campaign_id'] = $objCampaignSess->getCampaignId();
-
-	// ¥²¥Ã¥È¤ÎÃÍ¤ò¥¤¥ó¥µ¡¼¥È
-	//$sqlval = lfGetInsParam($sqlval);
-	
-	// INSERT¤Î¼Â¹Ô
-	$objQuery->insert("dtb_order", $sqlval);
-	
-	return $order_id;
-}
-
-// ¼õÃí¾ÜºÙ¥Æ¡¼¥Ö¥ë¤ØÅÐÏ¿
-function lfRegistOrderDetail($objQuery, $order_id) {
-    $objCartSess = new SC_CartSession();
-    
-	// ¥«¡¼¥ÈÆâ¾ðÊó¤Î¼èÆÀ
-	$arrCart = $objCartSess->getCartList();
-	$max = count($arrCart);
-	
-	// ´û¤ËÂ¸ºß¤¹¤ë¾ÜºÙ¥ì¥³¡¼¥É¤ò¾Ã¤·¤Æ¤ª¤¯¡£
-	$objQuery->delete("dtb_order_detail", "order_id = $order_id");
-
-	// µ¬³ÊÌ¾°ìÍ÷
-	$arrClassName = sfGetIDValueList("dtb_class", "class_id", "name");
-	// µ¬³ÊÊ¬ÎàÌ¾°ìÍ÷
-	$arrClassCatName = sfGetIDValueList("dtb_classcategory", "classcategory_id", "name");
-			
-	for ($i = 0; $i < $max; $i++) {
-		// ¾¦ÉÊµ¬³Ê¾ðÊó¤Î¼èÆÀ	
-		$arrData = sfGetProductsClass($arrCart[$i]['id']);
-		
-		// Â¸ºß¤¹¤ë¾¦ÉÊ¤Î¤ßÉ½¼¨¤¹¤ë¡£
-		if($arrData != "") {
-			$sqlval['order_id'] = $order_id;
-			$sqlval['product_id'] = $arrCart[$i]['id'][0];
-			$sqlval['classcategory_id1'] = $arrCart[$i]['id'][1];
-			$sqlval['classcategory_id2'] = $arrCart[$i]['id'][2];
-			$sqlval['product_name'] = $arrData['name'];
-			$sqlval['product_code'] = $arrData['product_code'];
-			$sqlval['classcategory_name1'] = $arrClassCatName[$arrData['classcategory_id1']];
-			$sqlval['classcategory_name2'] = $arrClassCatName[$arrData['classcategory_id2']];
-			$sqlval['point_rate'] = $arrCart[$i]['point_rate'];			
-			$sqlval['price'] = $arrCart[$i]['price'];
-			$sqlval['quantity'] = $arrCart[$i]['quantity'];
-			lfReduceStock($objQuery, $arrCart[$i]['id'], $arrCart[$i]['quantity']);
-			// INSERT¤Î¼Â¹Ô
-			$objQuery->insert("dtb_order_detail", $sqlval);
-		} else {
-			sfDispSiteError(CART_NOT_FOUND);
-		}
-	}
-}
-
-// ¥­¥ã¥ó¥Ú¡¼¥ó¼õÃí¥Æ¡¼¥Ö¥ë¤ØÅÐÏ¿
-function lfRegistCampaignOrder($objQuery, $objCampaignSess, $order_id) {
-
-	// ¼õÃí¥Ç¡¼¥¿¤ò¼èÆÀ
-	$cols = "order_id, campaign_id, customer_id, message, order_name01, order_name02,".
-			"order_kana01, order_kana02, order_email, order_tel01, order_tel02, order_tel03,".
-			"order_fax01, order_fax02, order_fax03, order_zip01, order_zip02, order_pref, order_addr01,".
-			"order_addr02, order_sex, order_birth, order_job, deliv_name01, deliv_name02, deliv_kana01,".
-			"deliv_kana02, deliv_tel01, deliv_tel02, deliv_tel03, deliv_fax01, deliv_fax02, deliv_fax03,".
-			"deliv_zip01, deliv_zip02, deliv_pref, deliv_addr01, deliv_addr02, payment_total";
-
-	$arrOrder = $objQuery->select($cols, "dtb_order", "order_id = ?", array($order_id)); 
-			
-	$sqlval = $arrOrder[0];
-    $sqlval['create_date'] = 'now()';
-		
-	// INSERT¤Î¼Â¹Ô
-	$objQuery->insert("dtb_campaign_order", $sqlval);
-	
-	// ¿½¤·¹þ¤ß¿ô¤Î¹¹¿·
-	$total_count = $objQuery->get("dtb_campaign", "total_count", "campaign_id = ?", array($sqlval['campaign_id']));
-	$arrCampaign['total_count'] = $total_count += 1;
-	$objQuery->update("dtb_campaign", $arrCampaign, "campaign_id = ?", array($sqlval['campaign_id']));
-	
-}
-
-/* ¼õÃí°ì»þ¥Æ¡¼¥Ö¥ë¤Îºï½ü */
-function lfDeleteTempOrder($objQuery, $uniqid) {
-	$where = "order_temp_id = ?";
-	$sqlval['del_flg'] = 1;
-	$objQuery->update("dtb_order_temp", $sqlval, $where, array($uniqid));
-	// $objQuery->delete("dtb_order_temp", $where, array($uniqid));
-}
-
-// ¼õÃí°ì»þ¥Æ¡¼¥Ö¥ë¤Î½»½ê¤¬ÅÐÏ¿ºÑ¤ß¥Æ¡¼¥Ö¥ë¤È°Û¤Ê¤ë¾ì¹ç¤Ï¡¢ÊÌ¤Î¤ªÆÏ¤±Àè¤ËÄÉ²Ã¤¹¤ë
-function lfSetNewAddr($uniqid, $customer_id) {
-	$objQuery = new SC_Query();
-	$diff = false;
-	$find_same = false;
-	
-	$col = "deliv_name01,deliv_name02,deliv_kana01,deliv_kana02,deliv_tel01,deliv_tel02,deliv_tel03,deliv_zip01,deliv_zip02,deliv_pref,deliv_addr01,deliv_addr02";
-	$where = "order_temp_id = ?";
-	$arrRet = $objQuery->select($col, "dtb_order_temp", $where, array($uniqid));
-	
-	// Í×ÁÇÌ¾¤Îdeliv_¤òºï½ü¤¹¤ë¡£
-	foreach($arrRet[0] as $key => $val) {
-		$keyname = ereg_replace("^deliv_", "", $key);
-		$arrNew[$keyname] = $val;
-	}
-	
-	// ²ñ°÷¾ðÊó¥Æ¡¼¥Ö¥ë¤È¤ÎÈæ³Ó
-	$col = "name01,name02,kana01,kana02,tel01,tel02,tel03,zip01,zip02,pref,addr01,addr02";
-	$where = "customer_id = ?";
-	$arrCustomerAddr = $objQuery->select($col, "dtb_customer", $where, array($customer_id));
-	
-	// ²ñ°÷¾ðÊó¤Î½»½ê¤È°Û¤Ê¤ë¾ì¹ç
-	if($arrNew != $arrCustomerAddr[0]) {
-		// ÊÌ¤Î¤ªÆÏ¤±Àè¥Æ¡¼¥Ö¥ë¤Î½»½ê¤ÈÈæ³Ó¤¹¤ë
-		$col = "name01,name02,kana01,kana02,tel01,tel02,tel03,zip01,zip02,pref,addr01,addr02";
-		$where = "customer_id = ?";
-		$arrOtherAddr = $objQuery->select($col, "dtb_other_deliv", $where, array($customer_id));
-
-		foreach($arrOtherAddr as $arrval) {
-			if($arrNew == $arrval) {
-				// ¤¹¤Ç¤ËÆ±¤¸½»½ê¤¬ÅÐÏ¿¤µ¤ì¤Æ¤¤¤ë
-				$find_same = true;
-			}
-		}
-		
-		if(!$find_same) {
-			$diff = true;
-		}
-	}
-	
-	// ¿·¤·¤¤¤ªÆÏ¤±Àè¤¬ÅÐÏ¿ºÑ¤ß¤Î¤â¤Î¤È°Û¤Ê¤ë¾ì¹ç¤ÏÊÌ¤Î¤ªÆÏ¤±Àè¥Æ¡¼¥Ö¥ë¤ËÅÐÏ¿¤¹¤ë
-	if($diff) {
-		$sqlval = $arrNew;
-		$sqlval['customer_id'] = $customer_id;
-		$objQuery->insert("dtb_other_deliv", $sqlval);
-	}
-}
-
-/* ¹ØÆþ¾ðÊó¤ò²ñ°÷¥Æ¡¼¥Ö¥ë¤ËÅÐÏ¿¤¹¤ë */
-function lfSetCustomerPurchase($customer_id, $arrData, $objQuery) {
-	$col = "first_buy_date, last_buy_date, buy_times, buy_total, point";
-	$where = "customer_id = ?";
-	$arrRet = $objQuery->select($col, "dtb_customer", $where, array($customer_id));
-	$sqlval = $arrRet[0];
-	
-	if($sqlval['first_buy_date'] == "") {
-		$sqlval['first_buy_date'] = "Now()";
-	}
-	$sqlval['last_buy_date'] = "Now()";
-	$sqlval['buy_times']++;
-	$sqlval['buy_total']+= $arrData['total'];
-	$sqlval['point'] = ($sqlval['point'] + $arrData['add_point'] - $arrData['use_point']);
-	
-	// ¥Ý¥¤¥ó¥È¤¬ÉÔÂ­¤·¤Æ¤¤¤ë¾ì¹ç
-	if($sqlval['point'] < 0) {
-		$objQuery->rollback();
-		sfDispSiteError(LACK_POINT);
-	}
-	
-	$objQuery->update("dtb_customer", $sqlval, $where, array($customer_id));
-}
-
-// ºß¸Ë¤ò¸º¤é¤¹½èÍý
-function lfReduceStock($objQuery, $arrID, $quantity) {
-	$where = "product_id = ? AND classcategory_id1 = ? AND classcategory_id2 = ?";
-	$arrRet = $objQuery->select("stock, stock_unlimited", "dtb_products_class", $where, $arrID);
-	
-	// Çä¤êÀÚ¤ì¥¨¥é¡¼
-	if(($arrRet[0]['stock_unlimited'] != '1' && $arrRet[0]['stock'] < $quantity) || $quantity == 0) {
-		$objQuery->rollback();
-		sfDispSiteError(SOLD_OUT, "", true);
-	// ÌµÀ©¸Â¤Î¾ì¹ç¡¢ºß¸Ë¤ÏNULL
-	} elseif($arrRet[0]['stock_unlimited'] == '1') {
-		$sqlval['stock'] = null;
-		$objQuery->update("dtb_products_class", $sqlval, $where, $arrID);
-	// ºß¸Ë¤ò¸º¤é¤¹
-	} else {
-		$sqlval['stock'] = ($arrRet[0]['stock'] - $quantity);
-		if($sqlval['stock'] == "") {
-			$sqlval['stock'] = '0';
-		}		
-		$objQuery->update("dtb_products_class", $sqlval, $where, $arrID);
-	}
-}
-
-// GET¤ÎÃÍ¤ò¥¤¥ó¥µ¡¼¥ÈÍÑ¤ËÀ°¤¨¤ë
-function lfGetInsParam($sqlVal){
-	
-	foreach($_GET as $key => $val){
-		// ¥«¥é¥à¤ÎÂ¸ºß¥Á¥§¥Ã¥¯
-		if(sfColumnExists("dtb_order", $key)) $sqlVal[$key] = $val;
-	}
-	
-	return $sqlVal;
-}
-?>
Index: /branches/feature-module-zeus/html/install/temp/%%4B^4B3^4B3E9405%%step3.tpl.php
===================================================================
--- /branches/feature-module-zeus/html/install/temp/%%4B^4B3^4B3E9405%%step3.tpl.php	(revision 15412)
+++ /branches/feature-module-zeus/html/install/temp/%%4B^4B3^4B3E9405%%step3.tpl.php	(revision 15412)
@@ -0,0 +1,79 @@
+<?php /* Smarty version 2.6.13, created on 2007-08-28 11:11:43
+         compiled from step3.tpl */ ?>
+<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
+smarty_core_load_plugins(array('plugins' => array(array('modifier', 'script_escape', 'step3.tpl', 26, false),array('modifier', 'escape', 'step3.tpl', 26, false),)), $this); ?>
+<script type="text/javascript">
+<!--
+	// ¥â¡¼¥É¤È¥­¡¼¤ò»ØÄê¤·¤ÆSUBMIT¤ò¹Ô¤¦¡£
+	function fnModeSubmit(mode) {
+		switch(mode) {
+		case 'drop':
+			if(!window.confirm('°ìÅÙºï½ü¤·¤¿¥Ç¡¼¥¿¤Ï¡¢¸µ¤ËÌá¤»¤Þ¤»¤ó¡£\nºï½ü¤·¤Æ¤âµ¹¤·¤¤¤Ç¤¹¤«¡©')){
+				return;
+			}
+			break;
+		default:
+			break;
+		}
+		document.form1['mode'].value = mode;
+		document.form1.submit();	
+	}
+//-->
+</script>
+
+<table width="502" border="0" cellspacing="1" cellpadding="0" summary=" ">
+<form name="form1" id="form1" method="post" action="<?php echo ((is_array($_tmp=((is_array($_tmp=$_SERVER['PHP_SELF'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+">
+<input type="hidden" name="mode" value="<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_mode'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+">
+<input type="hidden" name="step" value="0">
+
+<?php $_from = ((is_array($_tmp=$this->_tpl_vars['arrHidden'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
+    foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['item']):
+?>
+<input type="hidden" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['item'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+">
+<?php endforeach; endif; unset($_from); ?>
+
+<tr><td height="30"></td></tr>
+<tr><td align="left" class="fs12st">¢£¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î½é´ü²½</td></tr>
+<tr><td align="left" class="fs12"><?php if (((is_array($_tmp=$this->_tpl_vars['tpl_db_version'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)) != ""): ?>ÀÜÂ³¾ðÊó¡§<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_db_version'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp));  endif; ?></td></tr>
+<tr><td align="left" class="fs12">¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î½é´ü²½¤ò³«»Ï¤·¤Þ¤¹</td></tr>
+<tr><td align="left" class="fs12">¢¨¤¹¤Ç¤Ë¥Æ¡¼¥Ö¥ëÅù¤¬ºîÀ®¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤ÏÃæÃÇ¤µ¤ì¤Þ¤¹</td></tr>
+<?php if (((is_array($_tmp=$this->_tpl_vars['tpl_mode'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)) != 'complete'): ?>
+<tr><td align="left" class="fs12"><input type="checkbox" id="skip" name="db_skip" <?php if (((is_array($_tmp=$this->_tpl_vars['tpl_db_skip'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)) == 'on'): ?>checked<?php endif; ?>> <label for="skip">¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î½é´ü²½½èÍý¤ò¹Ô¤ï¤Ê¤¤</label></td></tr>
+<?php endif; ?>
+
+<?php if (count ( ((is_array($_tmp=$this->_tpl_vars['arrErr'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)) ) > 0 || ((is_array($_tmp=$this->_tpl_vars['tpl_message'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)) != ""): ?>
+<tr>
+	<td bgcolor="#cccccc" class="fs12">
+	<table width="500" border="0" cellspacing="1" cellpadding="8" summary=" ">
+		<tr>
+			<td bgcolor="#ffffff" class="fs12" height="50">
+			<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_message'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+<br>
+			<span class="red"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr']['all'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span>
+			<?php if (((is_array($_tmp=$this->_tpl_vars['arrErr']['all'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)) != ""): ?>
+			<input type="button" onclick="fnModeSubmit('drop');" value="´ûÂ¸¥Ç¡¼¥¿¤ò¤¹¤Ù¤Æºï½ü¤¹¤ë">
+			<?php endif; ?>
+			</td>
+		</tr>
+	</table>
+	</td>
+</tr>
+<?php endif; ?>
+</table>
+
+<table width="500" border="0" cellspacing="1" cellpadding="8" summary=" ">
+	<tr><td height="20"></td></tr>
+	<tr>
+		<td align="center">
+		<a href="#" onmouseover="chgImg('../img/install/back_on.jpg','back')" onmouseout="chgImg('../img/install/back.jpg','back')" onclick="document.form1['mode'].value='return_step2';document.form1.submit();return false;" /><img  width="105" src="../img/install/back.jpg"  height="24" alt="Á°¤ØÌá¤ë" border="0" name="back"></a>
+		<input type="image" onMouseover="chgImgImageSubmit('../img/install/next_on.jpg',this)" onMouseout="chgImgImageSubmit('../img/install/next.jpg',this)" src="../img/install/next.jpg" width="105" height="24" alt="¼¡¤Ø¿Ê¤à" border="0" name="next" onClick="document.body.style.cursor = 'wait';">
+		</td>
+	</tr>
+	<tr><td height="30"></td></tr>
+</from>
+</table>								
Index: /branches/feature-module-zeus/html/install/temp/%%31^31F^31FEC765%%step1.tpl.php
===================================================================
--- /branches/feature-module-zeus/html/install/temp/%%31^31F^31FEC765%%step1.tpl.php	(revision 15412)
+++ /branches/feature-module-zeus/html/install/temp/%%31^31F^31FEC765%%step1.tpl.php	(revision 15412)
@@ -0,0 +1,157 @@
+<?php /* Smarty version 2.6.13, created on 2007-08-28 11:11:27
+         compiled from step1.tpl */ ?>
+<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
+smarty_core_load_plugins(array('plugins' => array(array('modifier', 'script_escape', 'step1.tpl', 7, false),array('modifier', 'escape', 'step1.tpl', 7, false),array('modifier', 'sfGetErrorColor', 'step1.tpl', 25, false),)), $this); ?>
+<table width="502" border="0" cellspacing="1" cellpadding="0" summary=" ">
+<form name="form1" id="form1" method="post" action="<?php echo ((is_array($_tmp=((is_array($_tmp=$_SERVER['PHP_SELF'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+">
+<input type="hidden" name="mode" value="<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_mode'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+">
+<input type="hidden" name="step" value="0">
+
+<?php $_from = ((is_array($_tmp=$this->_tpl_vars['arrHidden'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
+    foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['item']):
+?>
+<input type="hidden" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['item'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+">
+<?php endforeach; endif; unset($_from); ?>
+
+<tr><td height="30"></td></tr>
+<tr><td align="left" class="fs12st">¢£EC¥µ¥¤¥È¤ÎÀßÄê</td></tr>
+<tr>
+	<td bgcolor="#cccccc">
+	<table width="500" border="0" cellspacing="1" cellpadding="8" summary=" ">
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">Å¹Ì¾<span class="red">¢¨</span></td>
+			<td bgcolor="#ffffff" width="332">
+			<?php $this->assign('key', 'shop_name'); ?>
+			<span class="red"><span class="fs12n"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span></span>
+			<input type="text" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="40" class="box40" />
+			<br><span class="fs10">¢¨¤¢¤Ê¤¿¤ÎÅ¹Ì¾¤ò¤´µ­Æþ¤¯¤À¤µ¤¤¡£</span>
+			</td>
+		</tr>
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">´ÉÍý¼Ô¡§¥á¡¼¥ë¥¢¥É¥ì¥¹<span class="red">¢¨</span></td>
+			<td bgcolor="#ffffff" width="332">
+			<?php $this->assign('key', 'admin_mail'); ?>
+			<span class="red"><span class="fs12n"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span></span>
+			<input type="text" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="40" class="box40" />
+			<br><span class="fs10">¢¨¼õÃí¥á¡¼¥ë¤Ê¤É¤Î°¸Àè¤Ë¤Ê¤ê¤Þ¤¹¡£¡§(Îã)example@ec-cube.net</span>
+			</td>
+		</tr>
+		<tr>
+			<td bgcolor="#f2f1ec" width="150"><span class="fs12n">´ÉÍý¼Ô¡§¥í¥°¥¤¥óID<span class="red">¢¨</span></span><br/><span class="fs10">È¾³Ñ±Ñ¿ô»ú¡¦15Ê¸»ú°ÊÆâ</span></td>
+			<td bgcolor="#ffffff" width="332">
+			<?php $this->assign('key', 'login_id'); ?>
+			<span class="red"><span class="fs12n"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span></span>
+			<input type="text" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="40" class="box40" />
+			<br><span class="fs10">¢¨´ÉÍý¼Ô²èÌÌ¤Ë¥í¥°¥¤¥ó¤¹¤ë¤¿¤á¤ÎID¤Ç¤¹¡£</span>
+			</td>
+		</tr>
+		<tr>
+			<td bgcolor="#f2f1ec" width="150"><span class="fs12n">´ÉÍý¼Ô¡§¥Ñ¥¹¥ï¡¼¥É<span class="red">¢¨</span></span><br/><span class="fs10">È¾³Ñ±Ñ¿ô»ú¡¦15Ê¸»ú°ÊÆâ</span></td>
+			<td bgcolor="#ffffff" width="332">
+			<?php $this->assign('key', 'login_pass'); ?>
+			<span class="red"><span class="fs12n"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span></span>
+			<input type="password" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+;" size="40" class="box40" />
+			<br><span class="fs10">¢¨´ÉÍý¼Ô²èÌÌ¤Ë¥í¥°¥¤¥ó¤¹¤ë¤¿¤á¤Î¥Ñ¥¹¥ï¡¼¥É¤Ç¤¹¡£</span>
+			</td>
+		</tr>
+	</table>
+	</td>
+</tr>
+<tr><td height="20"></td></tr>
+<tr><td align="left" class="fs12st">¢£WEB¥µ¡¼¥Ð¤ÎÀßÄê</td></tr>
+<tr>
+	<td bgcolor="#cccccc">
+	<table width="500" border="0" cellspacing="1" cellpadding="8" summary=" ">		
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">HTML¥Ñ¥¹<span class="red">¢¨</span></td>
+			<td bgcolor="#ffffff" width="332" class="fs12">
+			<?php $this->assign('key', 'install_dir'); ?>
+			<span class="red"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span>
+			<input type="text" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="40" class="box40" />
+			</td>
+		</tr>
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">URL(ÄÌ¾ï)<span class="red">¢¨</span></td>
+			<td bgcolor="#ffffff" width="332" class="fs12">
+			<?php $this->assign('key', 'normal_url'); ?>
+			<span class="red"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span>
+			<input type="text" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="40" class="box40" />
+			</td>
+		</tr>
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">URL(¥»¥­¥å¥¢)<span class="red">¢¨</span></td>
+			<td bgcolor="#ffffff" width="332" class="fs12">
+			<?php $this->assign('key', 'secure_url'); ?>
+			<span class="red"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span>
+			<input type="text" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="40" class="box40" />
+			</td>
+		</tr>
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">¶¦ÄÌ¥É¥á¥¤¥ó</td>
+			<td bgcolor="#ffffff" width="332">	
+			<?php $this->assign('key', 'domain'); ?>
+			<span class="red"><span class="fs12n"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span></span>
+			<input type="text" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="40" class="box40" />
+			<br><span class="fs10">¢¨ÄÌ¾ïURL¤È¥»¥­¥å¥¢URL¤Ç¥µ¥Ö¥É¥á¥¤¥ó¤¬°Û¤Ê¤ë¾ì¹ç¤Ë»ØÄê¤·¤Þ¤¹¡£</span>
+			</td>
+		</tr>
+	</table>
+	</td>
+</tr>
+</table>
+
+<table width="500" border="0" cellspacing="1" cellpadding="8" summary=" ">
+	<tr><td height="20"></td></tr>
+	<tr>
+		<td align="center">
+		<a href="#" onmouseover="chgImg('../img/install/back_on.jpg','back')" onmouseout="chgImg('../img/install/back.jpg','back')" onclick="document.form1['mode'].value='return_step0';document.form1.submit();return false;" /><img  width="105" src="../img/install/back.jpg"  height="24" alt="Á°¤ØÌá¤ë" border="0" name="back"></a>
+		<input type="image" onMouseover="chgImgImageSubmit('../img/install/next_on.jpg',this)" onMouseout="chgImgImageSubmit('../img/install/next.jpg',this)" src="../img/install/next.jpg" width="105" height="24" alt="¼¡¤Ø¿Ê¤à" border="0" name="next">
+		</td>
+	</tr>
+	<tr><td height="30"></td></tr>
+</from>
+</table>
Index: /branches/feature-module-zeus/html/install/temp/%%76^765^765EBDB5%%step2.tpl.php
===================================================================
--- /branches/feature-module-zeus/html/install/temp/%%76^765^765EBDB5%%step2.tpl.php	(revision 15412)
+++ /branches/feature-module-zeus/html/install/temp/%%76^765^765EBDB5%%step2.tpl.php	(revision 15412)
@@ -0,0 +1,137 @@
+<?php /* Smarty version 2.6.13, created on 2007-08-28 11:11:37
+         compiled from step2.tpl */ ?>
+<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
+smarty_core_load_plugins(array('plugins' => array(array('modifier', 'script_escape', 'step2.tpl', 12, false),array('modifier', 'escape', 'step2.tpl', 21, false),array('modifier', 'sfGetErrorColor', 'step2.tpl', 40, false),array('function', 'html_options', 'step2.tpl', 41, false),)), $this); ?>
+<script type="text/javascript">
+function lfnChangePort(db_type) {
+
+	type = db_type.value;
+	
+	if (type == 'pgsql') {
+		form1.db_port.value = '<?php echo ((is_array($_tmp=$this->_tpl_vars['arrDB_PORT']['pgsql'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+';
+	}
+	
+	if (type == 'mysql') {
+		form1.db_port.value = '<?php echo ((is_array($_tmp=$this->_tpl_vars['arrDB_PORT']['mysql'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+';
+	}
+}
+</script>
+<table width="502" border="0" cellspacing="1" cellpadding="0" summary=" ">
+<form name="form1" id="form1" method="post" action="<?php echo ((is_array($_tmp=((is_array($_tmp=$_SERVER['PHP_SELF'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+">
+<input type="hidden" name="mode" value="<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_mode'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+">
+<input type="hidden" name="step" value="0">
+<?php $_from = ((is_array($_tmp=$this->_tpl_vars['arrHidden'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
+    foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['item']):
+?>
+<input type="hidden" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['item'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+">
+<?php endforeach; endif; unset($_from); ?>
+
+<tr><td height="30"></td></tr>
+<tr><td align="left" class="fs12st">¢£¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎÀßÄê</td></tr>
+<tr><td align="left" class="fs12">¢¨¥¤¥ó¥¹¥È¡¼¥ë¤ÎÁ°¤Ë¿·¤·¤¯DB¤òºîÀ®¤·¤Æ¤ª¤¯É¬Í×¤¬¤¢¤ê¤Þ¤¹¡£</td></tr>
+<tr><td align="left" class="red12"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr']['all'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</td></tr>
+<tr>
+	<td bgcolor="#cccccc">
+	<table width="500" border="0" cellspacing="1" cellpadding="8" summary=" ">
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">DB¤Î¼ïÎà<span class="red">¢¨</span></td>
+			<td bgcolor="#ffffff" width="332" class="fs12">
+			<?php $this->assign('key', 'db_type'); ?>
+			<span class="red"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span>
+			<select name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" onChange="lfnChangePort(this)">
+			<?php echo smarty_function_html_options(array('options' => ((is_array($_tmp=$this->_tpl_vars['arrDB_TYPE'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)),'selected' => ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp))), $this);?>
+
+			</select>
+			</td>
+		</tr>
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">DB¥µ¡¼¥Ð<span class="red">¢¨</span></td>
+			<td bgcolor="#ffffff" width="332" class="fs12">
+			<?php $this->assign('key', 'db_server'); ?>
+			<span class="red"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span>
+			<input type="text" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="40" class="box40" />
+			</td>
+		</tr>
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">¥Ý¡¼¥È</td>
+			<td bgcolor="#ffffff" width="332">
+			<?php $this->assign('key', 'db_port'); ?>
+			<span class="red"><span class="fs12n"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span></span>
+			<input type="text" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="6" class="box6" />
+			</td>
+		</tr>
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">DBÌ¾<span class="red">¢¨</span></td>
+			<td bgcolor="#ffffff" width="332" class="fs12">
+			<?php $this->assign('key', 'db_name'); ?>
+			<span class="red"><span class="fs12n"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span></span>
+			<input type="text" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="40" class="box40" />
+			</td>
+		</tr>
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">DB¥æ¡¼¥¶<span class="red">¢¨</span></td>
+			<td bgcolor="#ffffff" width="332" class="fs12">
+			<?php $this->assign('key', 'db_user'); ?>
+			<span class="red"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span>
+			<input type="text" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="40" class="box40" />
+			</td>
+		</tr>
+		<tr>
+			<td bgcolor="#f2f1ec" width="150" class="fs12n">DB¥Ñ¥¹¥ï¡¼¥É<span class="red">¢¨</span></td>
+			<td bgcolor="#ffffff" width="332" class="fs12">
+			<?php $this->assign('key', 'db_password'); ?>
+			<span class="red"><?php echo ((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+</span>
+			<input type="password" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['value'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+" maxlength="<?php echo ((is_array($_tmp=$this->_tpl_vars['arrForm'][$this->_tpl_vars['key']]['length'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" style="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['arrErr'][$this->_tpl_vars['key']])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('sfGetErrorColor', true, $_tmp) : sfGetErrorColor($_tmp)); ?>
+" size="40" class="box40" />
+			</td>
+		</tr>		
+	</table>
+	</td>
+</tr>
+</table>
+
+<table width="500" border="0" cellspacing="1" cellpadding="8" summary=" ">
+	<tr><td height="20"></td></tr>
+	<tr>
+		<td align="center">
+		<a href="#" onmouseover="chgImg('../img/install/back_on.jpg','back')" onmouseout="chgImg('../img/install/back.jpg','back')" onclick="document.form1['mode'].value='return_step1';document.form1.submit();return false;" /><img  width="105" src="../img/install/back.jpg"  height="24" alt="Á°¤ØÌá¤ë" border="0" name="back"></a>
+		<input type="image" onMouseover="chgImgImageSubmit('../img/install/next_on.jpg',this)" onMouseout="chgImgImageSubmit('../img/install/next.jpg',this)" src="../img/install/next.jpg" width="105" height="24" alt="¼¡¤Ø¿Ê¤à" border="0" name="next">
+		</td>
+	</tr>
+	<tr><td height="30"></td></tr>
+</from>
+</table>								
Index: /branches/feature-module-zeus/html/install/temp/%%D4^D40^D40A7B24%%complete.tpl.php
===================================================================
--- /branches/feature-module-zeus/html/install/temp/%%D4^D40^D40A7B24%%complete.tpl.php	(revision 15412)
+++ /branches/feature-module-zeus/html/install/temp/%%D4^D40^D40A7B24%%complete.tpl.php	(revision 15412)
@@ -0,0 +1,35 @@
+<?php /* Smarty version 2.6.13, created on 2007-08-28 11:12:13
+         compiled from complete.tpl */ ?>
+<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
+smarty_core_load_plugins(array('plugins' => array(array('modifier', 'script_escape', 'complete.tpl', 7, false),array('modifier', 'escape', 'complete.tpl', 7, false),)), $this); ?>
+<table width="502" border="0" cellspacing="1" cellpadding="0" summary=" ">
+<form name="form1" id="form1" method="post" action="<?php echo ((is_array($_tmp=((is_array($_tmp=$_SERVER['PHP_SELF'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+">
+<input type="hidden" name="mode" value="<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_mode'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+">
+
+<?php $_from = ((is_array($_tmp=$this->_tpl_vars['arrHidden'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
+    foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['item']):
+?>
+<input type="hidden" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['item'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+">
+<?php endforeach; endif; unset($_from); ?>
+
+<tr><td height="80"></td></tr>
+<tr>
+	<td align="center" class="fs12">
+		<strong>EC CUBE ¥¤¥ó¥¹¥È¡¼¥ë¤¬´°Î»¤·¤Þ¤·¤¿¡£</strong><br>
+		<br>
+		<a href="<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_sslurl'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+admin/">´ÉÍý²èÌÌ</a>¤Ë¥í¥°¥¤¥ó¤Ç¤­¤Þ¤¹¡£
+	</td>
+</tr>
+<tr>
+	<td align="center" class="fs10">
+		Àè¤Û¤ÉÅÐÏ¿¤·¤¿ID¡¢¥Ñ¥¹¥ï¡¼¥É¤òÍÑ¤¤¤Æ¥í¥°¥¤¥ó¤·¤Æ¤¯¤À¤µ¤¤¡£
+	</td>
+</tr>
+<tr><td height="80"></td></tr>
+
+</table>
Index: /branches/feature-module-zeus/html/install/temp/%%F9^F91^F91E4815%%step4.tpl.php
===================================================================
--- /branches/feature-module-zeus/html/install/temp/%%F9^F91^F91E4815%%step4.tpl.php	(revision 15412)
+++ /branches/feature-module-zeus/html/install/temp/%%F9^F91^F91E4815%%step4.tpl.php	(revision 15412)
@@ -0,0 +1,67 @@
+<?php /* Smarty version 2.6.13, created on 2007-08-28 11:12:12
+         compiled from step4.tpl */ ?>
+<?php require_once(SMARTY_CORE_DIR . 'core.load_plugins.php');
+smarty_core_load_plugins(array('plugins' => array(array('modifier', 'script_escape', 'step4.tpl', 7, false),array('modifier', 'escape', 'step4.tpl', 7, false),)), $this); ?>
+<table width="502" border="0" cellspacing="1" cellpadding="0" summary=" ">
+<form name="form1" id="form1" method="post" action="<?php echo ((is_array($_tmp=((is_array($_tmp=$_SERVER['PHP_SELF'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+">
+<input type="hidden" name="mode" value="<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_mode'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+">
+<input type="hidden" name="step" value="0">
+<input type="hidden" name="db_skip" value=<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_db_skip'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+>
+<input type="hidden" name="senddata_site_url" value="<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_site_url'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+">
+<input type="hidden" name="senddata_shop_name" value="<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_shop_name'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+">
+<input type="hidden" name="senddata_cube_ver" value="<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_cube_ver'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+">
+<input type="hidden" name="senddata_php_ver" value="<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_php_ver'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+">
+<input type="hidden" name="senddata_db_ver" value="<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_db_ver'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+">
+<?php $_from = ((is_array($_tmp=$this->_tpl_vars['arrHidden'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
+    foreach ($_from as $this->_tpl_vars['key'] => $this->_tpl_vars['item']):
+?>
+<input type="hidden" name="<?php echo ((is_array($_tmp=$this->_tpl_vars['key'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+" value="<?php echo ((is_array($_tmp=((is_array($_tmp=$this->_tpl_vars['item'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)))) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
+">
+<?php endforeach; endif; unset($_from); ?>
+
+<tr><td height="30"></td></tr>
+<tr><td align="left" class="fs12st">¢£¥µ¥¤¥È¾ðÊó¤Ë¤Ä¤¤¤Æ</td></tr>
+<tr><td align="left" class="fs12">EC-CUBE¤Î¥·¥¹¥Æ¥à¸þ¾åµÚ¤Ó¡¢¥Ç¥Ð¥Ã¥°¤Î¤¿¤á°Ê²¼¤Î¾ðÊó¤Î¤´Äó¶¡¤ò¤ª´ê¤¤¤¤¤¿¤·¤Þ¤¹¡£</td></tr>
+<tr>
+	<td bgcolor="#cccccc" class="fs12">
+	<table width="500" border="0" cellspacing="1" cellpadding="8" summary=" ">
+		<tr>
+			<td bgcolor="#ffffff" class="fs12" height="50">
+				- ¥µ¥¤¥ÈURL¡§<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_site_url'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+<br/>
+				- Å¹ÊÞÌ¾¡§<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_shop_name'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+<br/>
+				- EC-CUBE¥Ð¡¼¥¸¥ç¥ó¡§<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_cube_ver'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+<br/>
+				- PHP¾ðÊó¡§<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_php_ver'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+<br/>
+				- DB¾ðÊó¡§<?php echo ((is_array($_tmp=$this->_tpl_vars['tpl_db_ver'])) ? $this->_run_mod_handler('script_escape', true, $_tmp) : smarty_modifier_script_escape($_tmp)); ?>
+<br/>
+			</td>
+		</tr>
+	</table>
+	</td>
+</tr>
+<tr><td align="left" class="fs12"><input type="radio" id="ok" name="send_info" checked value=true><label for="ok">¤Ï¤¤(¿ä¾©)</label>¡¡<input type="radio" id="ng" name="send_info" value=false><label for="ng">¤¤¤¤¤¨</label></td></tr>
+</table>
+
+<table width="500" border="0" cellspacing="1" cellpadding="8" summary=" ">
+	<tr><td height="20"></td></tr>
+	<tr>
+		<td align="center">
+		<a href="#" onmouseover="chgImg('../img/install/back_on.jpg','back')" onmouseout="chgImg('../img/install/back.jpg','back')" onclick="document.form1['mode'].value='return_step3';document.form1.submit();return false;" /><img  width="105" src="../img/install/back.jpg"  height="24" alt="Á°¤ØÌá¤ë" border="0" name="back"></a>
+		<input type="image" onMouseover="chgImgImageSubmit('../img/install/next_on.jpg',this)" onMouseout="chgImgImageSubmit('../img/install/next.jpg',this)" src="../img/install/next.jpg" width="105" height="24" alt="¼¡¤Ø¿Ê¤à" border="0" name="next">
+		</td>
+	</tr>
+	<tr><td height="30"></td></tr>
+</from>
+</table>								
