Commit f413a53b by Kim Gyeongeun

#56955 レイアウト変更及びバグ修正

parent a39989fc
...@@ -10,6 +10,17 @@ import java.util.Map; ...@@ -10,6 +10,17 @@ import java.util.Map;
import javax.annotation.Resource; import javax.annotation.Resource;
import javax.mail.MessagingException; import javax.mail.MessagingException;
import org.apache.commons.lang.RandomStringUtils;
import org.apache.commons.validator.GenericValidator;
import org.apache.log4j.Logger;
import org.apache.struts.Globals;
import org.apache.struts.action.ActionMessage;
import org.apache.struts.action.ActionMessages;
import org.h2.util.StringUtils;
import org.seasar.framework.util.StringUtil;
import org.seasar.struts.annotation.ActionForm;
import org.seasar.struts.annotation.Execute;
import jp.agentec.sinaburocast.action.AbstractAction; import jp.agentec.sinaburocast.action.AbstractAction;
import jp.agentec.sinaburocast.common.SinaburoConstant; import jp.agentec.sinaburocast.common.SinaburoConstant;
import jp.agentec.sinaburocast.common.annotation.NoLogin; import jp.agentec.sinaburocast.common.annotation.NoLogin;
...@@ -27,17 +38,6 @@ import jp.agentec.sinaburocast.logic.MemberRegisterBatchLogic; ...@@ -27,17 +38,6 @@ import jp.agentec.sinaburocast.logic.MemberRegisterBatchLogic;
import jp.agentec.sinaburocast.service.MemberService; import jp.agentec.sinaburocast.service.MemberService;
import jp.agentec.sinaburocast.service.MessageService; import jp.agentec.sinaburocast.service.MessageService;
import org.apache.commons.lang.RandomStringUtils;
import org.apache.commons.validator.GenericValidator;
import org.apache.log4j.Logger;
import org.apache.struts.Globals;
import org.apache.struts.action.ActionMessage;
import org.apache.struts.action.ActionMessages;
import org.h2.util.StringUtils;
import org.seasar.framework.util.StringUtil;
import org.seasar.struts.annotation.ActionForm;
import org.seasar.struts.annotation.Execute;
/** /**
* 会員新規登録処理 * 会員新規登録処理
* *
...@@ -95,7 +95,7 @@ public class RegistAction extends AbstractAction { ...@@ -95,7 +95,7 @@ public class RegistAction extends AbstractAction {
if(avvs.getDevice().equals(SinaburoConstant.AccessType.PC)){ if(avvs.getDevice().equals(SinaburoConstant.AccessType.PC)){
// PCはトップページを使用する // PCはトップページを使用する
return "/"; return "/user/top/newUserRegist/";
} else { } else {
return "/user/regist/"; return "/user/regist/";
} }
......
...@@ -329,7 +329,7 @@ public class MemberInfoCsv extends AbstractCsv { ...@@ -329,7 +329,7 @@ public class MemberInfoCsv extends AbstractCsv {
} }
if (SinaburoUtil.mobileAddressCheck(checkMainPcEmail)) { if (SinaburoUtil.mobileAddressCheck(checkMainPcEmail)) {
errorMessage.append(SinaburoViewUtil.getMessage("errors.email", SinaburoViewUtil.getMessage("labels.pcMail"))); errorMessage.append(SinaburoViewUtil.getMessage("errors.email", SinaburoViewUtil.getMessage("labels.mainPcEmail")));
} }
} }
...@@ -343,8 +343,14 @@ public class MemberInfoCsv extends AbstractCsv { ...@@ -343,8 +343,14 @@ public class MemberInfoCsv extends AbstractCsv {
} }
} }
if (!SinaburoUtil.mobileAddressCheck(checkSubPcEmail)) { if (SinaburoUtil.mobileAddressCheck(checkSubPcEmail)) {
errorMessage.append(SinaburoViewUtil.getMessage("errors.email", SinaburoViewUtil.getMessage("labels.mbMail"))); errorMessage.append(SinaburoViewUtil.getMessage("errors.email", SinaburoViewUtil.getMessage("labels.subPcEmail")));
}
}
// メインPCメールとサブPCメール重複チェック
if (StringUtil.isNotBlank(checkMainPcEmail) && StringUtil.isNotBlank(checkSubPcEmail)) {
if (checkMainPcEmail.equals(checkSubPcEmail)) {
errorMessage.append(SinaburoViewUtil.getMessage("errors.E071"));
} }
} }
......
...@@ -311,7 +311,8 @@ public class QuestionService extends AbstractService<Question> { ...@@ -311,7 +311,8 @@ public class QuestionService extends AbstractService<Question> {
copiedQuestion.condRequiredAnswer = answerIdArrayStr.replaceAll(",$", ""); copiedQuestion.condRequiredAnswer = answerIdArrayStr.replaceAll(",$", "");
update(copiedQuestion, loginId); update(copiedQuestion, loginId);
answerIdArrayStr = ""; answerIdArrayStr = "";
} else if (copiedQuestion.condRequiredQuestionNo.equals(0) && copiedQuestion.condRequiredAnswer != null) { } else if ((copiedQuestion.condRequiredQuestionNo == null || copiedQuestion.condRequiredQuestionNo.equals(0))
&& copiedQuestion.condRequiredAnswer != null) {
copiedQuestion.condRequiredAnswer = null; copiedQuestion.condRequiredAnswer = null;
update(copiedQuestion, loginId); update(copiedQuestion, loginId);
} }
......
...@@ -54,7 +54,7 @@ errors.E011=\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4e00\u81f4\u3057\u307e\u305b\u ...@@ -54,7 +54,7 @@ errors.E011=\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4e00\u81f4\u3057\u307e\u305b\u
errors.E012=\u30ed\u30b0\u30a4\u30f3ID\u3082\u3057\u304f\u306f\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4e0d\u6b63\u3067\u3059\u3002 errors.E012=\u30ed\u30b0\u30a4\u30f3ID\u3082\u3057\u304f\u306f\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4e0d\u6b63\u3067\u3059\u3002
errors.E013=\u73fe\u5728\u306e\u30dd\u30a4\u30f3\u30c8\u6570\u3088\u308a\u30dd\u30a4\u30f3\u30c8\u6d88\u8cbb\u6570\u304c\u5927\u304d\u3044\u3067\u3059\u3002 errors.E013=\u73fe\u5728\u306e\u30dd\u30a4\u30f3\u30c8\u6570\u3088\u308a\u30dd\u30a4\u30f3\u30c8\u6d88\u8cbb\u6570\u304c\u5927\u304d\u3044\u3067\u3059\u3002
errors.E014=\u65e2\u306b\u767b\u9332\u6e08\u307f\u306eE-mail\u3067\u3059\u3002 errors.E014=\u65e2\u306b\u767b\u9332\u6e08\u307f\u306eE-mail\u3067\u3059\u3002
errors.E015=\u65e2\u306b\u767b\u9332\u6e08\u307f\u306e\u643a\u5e2f\u96fb\u8a71E-mail\u3067\u3059\u3002 errors.E015=\u65e2\u306b\u767b\u9332\u6e08\u307f\u306eE-mail(\u30b5\u30d6)\u3067\u3059\u3002
errors.E016=\u65e2\u306b\u767b\u9332\u6e08\u307f\u306e\u30ed\u30b0\u30a4\u30f3ID\u3067\u3059\u3002 errors.E016=\u65e2\u306b\u767b\u9332\u6e08\u307f\u306e\u30ed\u30b0\u30a4\u30f3ID\u3067\u3059\u3002
errors.E017=\u65e5\u5225\u306e\u691c\u7d22\u306f\u671f\u9593(from)\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002 errors.E017=\u65e5\u5225\u306e\u691c\u7d22\u306f\u671f\u9593(from)\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002
errors.E018=\u65e5\u5225\u306e\u691c\u7d22\u306f\u671f\u9593(to)\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002 errors.E018=\u65e5\u5225\u306e\u691c\u7d22\u306f\u671f\u9593(to)\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002
......
...@@ -15,6 +15,9 @@ ...@@ -15,6 +15,9 @@
} }
function send_check(){ function send_check(){
if ($("input[name=withDrawFlg]").is(":checked")) {
$("input[name=withDrawFlg]").val("1");
}
document.mainForm.submit(); document.mainForm.submit();
return false; return false;
} }
...@@ -235,7 +238,7 @@ ...@@ -235,7 +238,7 @@
</tr> </tr>
<tr> <tr>
<td>退会フラグ</td> <td>退会フラグ</td>
<td>&nbsp;&nbsp;退会<input name="withDrawFlg" type="checkbox" / class="mgl10" value="$!memberEditForm.withDrawFlg" #if($memberEditForm.withDrawFlg != "0") checked #end ></td> <td>&nbsp;&nbsp;退会<input name="withDrawFlg" type="checkbox" class="mgl10" value="$!memberEditForm.withDrawFlg" #if($memberEditForm.withDrawFlg == "1") checked #end></td>
</tr> </tr>
<tr> <tr>
<td>ポイント<font class="listpoint">*</font></td> <td>ポイント<font class="listpoint">*</font></td>
......
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
<th width="50">説明</th> <th width="50">説明</th>
<td>・データは一行に会員情報ずつタブ区切りで入力してください。<BR> <td>・データは一行に会員情報ずつタブ区切りで入力してください。<BR>
PC用E-MAIL、モバイル用E-MAILのどちらかは必須です。 E-mail(メイン)は必須です。
</td> </td>
</tr> </tr>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<div id="right_contents"> <div id="right_contents">
<table border="0" cellpadding="0" cellspacing="0" class="stripe"> <table border="0" cellpadding="0" cellspacing="0" class="stripe">
<tr> <tr>
<th class="w240 t_center complete">会員一括登録完了完了しました。</th> <th class="w240 t_center complete">会員一括登録完了しました。</th>
</tr> </tr>
</table> </table>
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -197,7 +197,7 @@ ...@@ -197,7 +197,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -190,7 +190,7 @@ ...@@ -190,7 +190,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"><!-- TABLE2 --> <table width="1024" border="0" cellspacing="0" cellpadding="0"><!-- TABLE2 -->
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"><!-- TABLE3 --> <table width="100%" border="0" cellspacing="5" cellpadding="0"><!-- TABLE3 -->
<tr> <tr>
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
</tr> </tr>
</table><!-- TABLE 3 END --> </table><!-- TABLE 3 END -->
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table><!-- TABLE2 END --> </table><!-- TABLE2 END -->
</TD> </TD>
......
...@@ -104,7 +104,7 @@ $tools.getMsg("errorheader") ...@@ -104,7 +104,7 @@ $tools.getMsg("errorheader")
##<!-- 4:TEXTFIELD ユーザー入力値を値にする。--> ##<!-- 4:TEXTFIELD ユーザー入力値を値にする。-->
#elseif($!question.controlId == "4") #elseif($!question.controlId == "4")
#if($!question.dispWitdth > 37) #set($!question.dispWitdth = 37) #end #if($!question.dispWitdth > 37) #set($!question.dispWitdth = 37) #end
<input type="text" id="#he($!question.questionId)" name="$answerIdValueName" value="$!escape.html($!answer.answerIdValue)" size="$!question.dispWitdth" #if($!question.questionInitDisable == "1") disabled #end/> <input type="text" id="#he($!question.questionId)" name="$answerIdValueName" value="$!escape.html($!answer.answerIdValue)" style="width:100%;" size="$!question.dispWitdth" #if($!question.questionInitDisable == "1") disabled #end/>
##<!-- 5:日付入力 ユーザー入力値を値にする。--> ##<!-- 5:日付入力 ユーザー入力値を値にする。-->
#elseif($!question.controlId == "5") #elseif($!question.controlId == "5")
#set($dateIndex = $dateIndex+1) #set($dateIndex = $dateIndex+1)
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
## end footer ## end footer
......
<!------------------------------------------------------HEADER START --------------------------------------------------> <!------------------------------------------------------HEADER START -------------------------------------------------->
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!------------------------------------------------------HEADER END --------------------------------------------------> <!------------------------------------------------------HEADER END -------------------------------------------------->
\ No newline at end of file
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<div class="input_form"> <div class="input_form">
<FORM method="post" action="#qs('/user/login/auth')"> <FORM method="post" action="#qs('/user/login/auth')">
<input type="hidden" name="org.apache.struts.taglib.html.TOKEN" value=""> <input type="hidden" name="org.apache.struts.taglib.html.TOKEN" value="">
<table width="150" border="0" cellpadding="0" cellspacing="0"> <table width="150" border="0" cellpadding="0" cellspacing="0" style="padding-bottom: 10px;">
<tr style="padding: 15px 0 0 0;"> <tr style="padding: 15px 0 0 0;">
<div style="font-size: 8pt;"> <div style="font-size: 8pt;">
$!tools.getMsg("loginId") $!tools.getMsg("loginId")
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
</table> </table>
</FORM> </FORM>
</div> </div>
<table width="150" border="0" cellspacing="0" cellpadding="0"> <table width="150" border="0" cellspacing="0" cellpadding="0" style="padding-bottom: 10px;">
<tr style="padding: 15px 0 0 0;"> <tr style="padding: 15px 0 0 0;">
<td nowrap align="center"> <td nowrap align="center">
<a href="/em/user/top/newUserRegist/"> <a href="/em/user/top/newUserRegist/">
......
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
<TD><!------------------------------------------------------HEADER START --------------------------------------------------> <TD><!------------------------------------------------------HEADER START -------------------------------------------------->
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!------------------------------------------------------HEADER END --------------------------------------------------></TD> <!------------------------------------------------------HEADER END --------------------------------------------------></TD>
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"><!-- TABLE2 --> <table width="1024" border="0" cellspacing="0" cellpadding="0"><!-- TABLE2 -->
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"><!-- TABLE3 --> <table width="100%" border="0" cellspacing="5" cellpadding="0"><!-- TABLE3 -->
<tr> <tr>
...@@ -221,7 +221,7 @@ ...@@ -221,7 +221,7 @@
</tr> </tr>
</table><!-- TABLE 3 END --> </table><!-- TABLE 3 END -->
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table><!-- TABLE2 END --> </table><!-- TABLE2 END -->
</TD> </TD>
...@@ -232,7 +232,7 @@ ...@@ -232,7 +232,7 @@
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -262,7 +262,7 @@ ...@@ -262,7 +262,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!------------------------------------------------------FOOTER END --------------------------------------------------></TD> <!------------------------------------------------------FOOTER END --------------------------------------------------></TD>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
<div id="top_message"> <div id="top_message">
e-モニター制度(eモニ)は、市川市が運営する登録制のアンケート制度です。<br>登録いただいた方にメールで市からアンケートや情報を発信し、みなさんの声を広く集めて市政に反映していくものです。登録は無料です。ぜひ参加してください。 e-モニター制度(eモニ)は、市川市が運営する登録制のアンケート制度です。<br>登録いただいた方にメールで市からアンケートや情報を発信し、みなさんの声を広く集めて市政に反映していくものです。登録は無料です。ぜひ参加してください。
</div> </div>
<img src="/em/images/top_news_new.png" width="410" <img src="/em/images/top_news_new.png" width="750"
height="33" border="0" alt="お知らせ"> height="33" border="0" alt="お知らせ">
<div id="top_news"> <div id="top_news">
<ul> <ul>
...@@ -199,7 +199,7 @@ ...@@ -199,7 +199,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"> <td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"> <img src="/em/images/spacer.gif" width="25" height="1" border="0">
</td> </td>
</tr> </tr>
......
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
<TD><!------------------------------------------------------HEADER START --------------------------------------------------> <TD><!------------------------------------------------------HEADER START -------------------------------------------------->
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!------------------------------------------------------HEADER END --------------------------------------------------></TD> <!------------------------------------------------------HEADER END --------------------------------------------------></TD>
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"><!-- TABLE2 --> <table width="1024" border="0" cellspacing="0" cellpadding="0"><!-- TABLE2 -->
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"><!-- TABLE3 --> <table width="100%" border="0" cellspacing="5" cellpadding="0"><!-- TABLE3 -->
<tr> <tr>
...@@ -577,7 +577,7 @@ ...@@ -577,7 +577,7 @@
</tr> </tr>
</table><!-- TABLE 3 END --> </table><!-- TABLE 3 END -->
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table><!-- TABLE2 END --> </table><!-- TABLE2 END -->
</TD> </TD>
...@@ -588,7 +588,7 @@ ...@@ -588,7 +588,7 @@
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -617,7 +617,7 @@ ...@@ -617,7 +617,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!------------------------------------------------------FOOTER END --------------------------------------------------></TD> <!------------------------------------------------------FOOTER END --------------------------------------------------></TD>
......
...@@ -13,12 +13,13 @@ ...@@ -13,12 +13,13 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td> <td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> <!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top"> <td align="center" valign="top">
##CONTENT START 各ページコンテンツ ##CONTENT START 各ページコンテンツ
...@@ -121,7 +122,7 @@ $!escape.html($!genreItem.enqTitle)($!{genreItem.startDay}~$!{genreItem.endDay ...@@ -121,7 +122,7 @@ $!escape.html($!genreItem.enqTitle)($!{genreItem.startDay}~$!{genreItem.endDay
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -38,7 +38,7 @@ $(function() { ...@@ -38,7 +38,7 @@ $(function() {
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -329,7 +329,7 @@ $tools.getMsg("errorheader") ...@@ -329,7 +329,7 @@ $tools.getMsg("errorheader")
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -254,7 +254,7 @@ ...@@ -254,7 +254,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="300" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" border="0"></td> <td width="300" ><img src="/em/images/spacer.gif" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -221,7 +221,7 @@ ...@@ -221,7 +221,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -196,7 +196,7 @@ ...@@ -196,7 +196,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -197,7 +197,7 @@ ...@@ -197,7 +197,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
<TD><!------------------------------------------------------HEADER START --------------------------------------------------> <TD><!------------------------------------------------------HEADER START -------------------------------------------------->
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -107,7 +107,7 @@ ...@@ -107,7 +107,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!------------------------------------------------------HEADER END --------------------------------------------------></TD> <!------------------------------------------------------HEADER END --------------------------------------------------></TD>
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -256,7 +256,7 @@ ...@@ -256,7 +256,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
...@@ -267,7 +267,7 @@ ...@@ -267,7 +267,7 @@
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -296,7 +296,7 @@ ...@@ -296,7 +296,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!------------------------------------------------------FOOTER END --------------------------------------------------></TD> <!------------------------------------------------------FOOTER END --------------------------------------------------></TD>
......
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
<TD><!------------------------------------------------------HEADER START --------------------------------------------------> <TD><!------------------------------------------------------HEADER START -------------------------------------------------->
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -107,7 +107,7 @@ ...@@ -107,7 +107,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!------------------------------------------------------HEADER END --------------------------------------------------></TD> <!------------------------------------------------------HEADER END --------------------------------------------------></TD>
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -256,7 +256,7 @@ ...@@ -256,7 +256,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
...@@ -267,7 +267,7 @@ ...@@ -267,7 +267,7 @@
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -296,7 +296,7 @@ ...@@ -296,7 +296,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!------------------------------------------------------FOOTER END --------------------------------------------------></TD> <!------------------------------------------------------FOOTER END --------------------------------------------------></TD>
......
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
<table width="750" border="0" cellspacing="0" cellpadding="0"> <table width="750" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"> <td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="700" bgcolor="#FFFFFF"> <td width="700" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"> <td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
<table width="750" border="0" cellspacing="0" cellpadding="0"> <table width="750" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="34" background="/em/images/shadowlft2.jpg"> <td width="34">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="691" bgcolor="#FFFFFF"> <td width="691" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
...@@ -265,7 +265,7 @@ ...@@ -265,7 +265,7 @@
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"> <td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
...@@ -274,7 +274,7 @@ ...@@ -274,7 +274,7 @@
<!-- Footer Table Start --> <!-- Footer Table Start -->
<table width="750" border="0" cellspacing="0" cellpadding="0"> <table width="750" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"> <td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="700" bgcolor="#FFFFFF"> <td width="700" bgcolor="#FFFFFF">
<table width="700" border="0" cellspacing="0" cellpadding="0"> <table width="700" border="0" cellspacing="0" cellpadding="0">
...@@ -310,7 +310,7 @@ ...@@ -310,7 +310,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"> <td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
......
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
<!-- header --> <!-- header -->
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -164,7 +164,7 @@ ...@@ -164,7 +164,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
<!-- header --> <!-- header -->
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -258,7 +258,7 @@ ...@@ -258,7 +258,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -13,12 +13,13 @@ ...@@ -13,12 +13,13 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td> <td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> <!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top"> <td align="center" valign="top">
##CONTENT START 各ページコンテンツ ##CONTENT START 各ページコンテンツ
...@@ -29,7 +30,7 @@ ...@@ -29,7 +30,7 @@
<table width="780" border="0" cellspacing="0" cellpadding="0"> <table width="780" border="0" cellspacing="0" cellpadding="0">
<td class="ctsTitle02" background="/em/images/shadowrgt2.jpg"> <td class="ctsTitle02">
#if($tools.isEmpty($userInfo.firstName) && $tools.isEmpty($userInfo.lastName)) #if($tools.isEmpty($userInfo.firstName) && $tools.isEmpty($userInfo.lastName))
マイページ マイページ
...@@ -188,7 +189,7 @@ $!escape.html($userInfo.firstName) $!escape.html($userInfo.lastName)さんのマ ...@@ -188,7 +189,7 @@ $!escape.html($userInfo.firstName) $!escape.html($userInfo.lastName)さんのマ
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
<!-- header --> <!-- header -->
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -172,7 +172,7 @@ ...@@ -172,7 +172,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -23,7 +23,7 @@ function back(){ ...@@ -23,7 +23,7 @@ function back(){
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -72,7 +72,7 @@ function back(){ ...@@ -72,7 +72,7 @@ function back(){
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -38,7 +38,7 @@ function memberRegistPage() { ...@@ -38,7 +38,7 @@ function memberRegistPage() {
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -115,7 +115,7 @@ function memberRegistPage() { ...@@ -115,7 +115,7 @@ function memberRegistPage() {
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -88,7 +88,7 @@ ICHICOポイントをためることはできますが現金のチャージは ...@@ -88,7 +88,7 @@ ICHICOポイントをためることはできますが現金のチャージは
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -76,7 +76,7 @@ $tools.getMsg("dayError") ...@@ -76,7 +76,7 @@ $tools.getMsg("dayError")
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -134,7 +134,7 @@ ...@@ -134,7 +134,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -24,12 +24,13 @@ ...@@ -24,12 +24,13 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td> <td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> <!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top"> <td align="center" valign="top">
##CONTENT START 各ページコンテンツ ##CONTENT START 各ページコンテンツ
...@@ -112,7 +113,7 @@ ...@@ -112,7 +113,7 @@
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"> <td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -60,7 +60,7 @@ TEL : 047-712-8633</td> ...@@ -60,7 +60,7 @@ TEL : 047-712-8633</td>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"> <td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
......
...@@ -24,12 +24,13 @@ ...@@ -24,12 +24,13 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td> <td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> <!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top"> <td align="center" valign="top">
##CONTENT START 各ページコンテンツ ##CONTENT START 各ページコンテンツ
...@@ -241,7 +242,7 @@ ...@@ -241,7 +242,7 @@
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"> <td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
......
...@@ -23,12 +23,13 @@ ...@@ -23,12 +23,13 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td> <td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> <!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top"> <td align="center" valign="top">
##CONTENT START 各ページコンテンツ ##CONTENT START 各ページコンテンツ
...@@ -546,7 +547,7 @@ em@e-moni.city.ichikawa.chiba.jpに空メールを送信ください。QRコー ...@@ -546,7 +547,7 @@ em@e-moni.city.ichikawa.chiba.jpに空メールを送信ください。QRコー
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"> <td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
......
...@@ -34,12 +34,13 @@ ...@@ -34,12 +34,13 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td> <td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> <!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top"> <td align="center" valign="top">
##CONTENT START 各ページコンテンツ ##CONTENT START 各ページコンテンツ
...@@ -145,7 +146,7 @@ ...@@ -145,7 +146,7 @@
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"> <td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
......
...@@ -13,12 +13,13 @@ ...@@ -13,12 +13,13 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td> <td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> <!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top"> <td align="center" valign="top">
##CONTENT START 各ページコンテンツ ##CONTENT START 各ページコンテンツ
...@@ -323,7 +324,7 @@ d.管理者がアンケートを配信し、モニターが回答を行ったア ...@@ -323,7 +324,7 @@ d.管理者がアンケートを配信し、モニターが回答を行ったア
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -63,7 +63,7 @@ function SetSubmit(mode) ...@@ -63,7 +63,7 @@ function SetSubmit(mode)
<!-- header --> <!-- header -->
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
...@@ -286,7 +286,7 @@ d.管理者がアンケートを配信し、モニターが回答を行ったア ...@@ -286,7 +286,7 @@ d.管理者がアンケートを配信し、モニターが回答を行ったア
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -378,7 +378,7 @@ ...@@ -378,7 +378,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -237,7 +237,7 @@ $!userEditForm.birthdayY年$!userEditForm.birthdayM月$!userEditForm.birthdayD ...@@ -237,7 +237,7 @@ $!userEditForm.birthdayY年$!userEditForm.birthdayM月$!userEditForm.birthdayD
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
<!-- Contents Table End --> <!-- Contents Table End -->
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -124,7 +124,7 @@ ...@@ -124,7 +124,7 @@
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<TD> <TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"> <table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF"> <td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"> <table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr> <tr>
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
</tr> </tr>
</table> </table>
</td> </td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td> <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr> </tr>
</table> </table>
</TD> </TD>
......
body {
background-color:#5FC4F4;
}
/* Text */ /* Text */
td { td {
font-size: 12pt; font-size: 12pt;
......

3.55 KB | W: | H:

864 Bytes | W: | H:

src/main/webapp/images/logon_btn_new.png
src/main/webapp/images/logon_btn_new.png
src/main/webapp/images/logon_btn_new.png
src/main/webapp/images/logon_btn_new.png
  • 2-up
  • Swipe
  • Onion skin
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment