OSDN Git Service

PHP Notice対応
[trpgtools-onweb/AjaxChat.git] / index_inc_userpanel.php
1 <!-- ここから:オンライン標準表示欄 -->
2 <table border="0" cellspacing="3" cellpadding="0" id="online1" class="online" style="display:none;">
3 <tr>
4 <td>
5 <form name="online1" onsubmit="return false;" action="">
6 <input type="hidden" name="name_on" value="" id="name_on">
7 <input type="hidden" name="pwd_on" id="pwd_on">
8 <input type="hidden" name="my_hash" value="" id="my_hash">
9 </td>
10
11 <?php
12
13 //=======ここから:オンラインTRPG欄
14 if (DICE_MAX && $GLOBALS['AJAX_CHAT_TRPG']['PRESET_DICE'][0]) {
15     print '<td title="右のダイスアイコンで入力するダイスを選んでください">';
16     print '<select name="dice" id="dice">'."\n";
17     foreach ($GLOBALS['AJAX_CHAT_TRPG']['PRESET_DICE'] as $v) {
18          print '<option value="'.$v.'">'.$v.'</option>'."\n";
19     }
20     print '</select></td>'."\n";
21     print '<td> + </td>'."\n";
22     print "<td>\n";
23     print '<span title="ダイスの修正値を入力してください"><option value="'.$v.'"><input type="text" size="6" value="" name="revision" id="revision"></span>';
24     print "</td>\n";
25     if (CF_INPUT) {
26         print "<td nowrap>\n";
27         if (!CF_FIXED) {
28             print '<span title="クリティカル値 11:「11で」クリティカル 11-:11「以上」でクリティカル">C:';
29         }
30         print '<input type="text" size="1" value="';
31         print C_DEFAULT;
32         print '" name="clit" id="clit"';
33         if (CF_FIXED) {
34             print ' style="display:none;"';
35         }
36         print '>';
37         if (!CF_FIXED) {
38             print '</span>';
39         }
40         print "</td>\n";
41         print '<td nowrap>';
42         if (!CF_FIXED) {
43             print '<span title="ファンブル 3:「3で」ファンブル 3-:3「以下」でファンブル"> F:';
44         }
45         print '<input type="text" size="1" value="';
46         print F_DEFAULT;
47         print '" name="famble" id="famble"';
48         if (CF_FIXED) {
49             print ' style="display:none;"';
50         }
51         print '>';
52         if (!CF_FIXED) {
53             print '</span>';
54         }
55         print "</td>\n";
56
57         print '<td nowrap>';
58         print '<span title="クリティカル・ファンブルで変化するダイスを発言欄に入力します">入力:<input id="cfinput" type="checkbox" onclick=\'toggleColumn("cfchange")\'></span></td>';
59
60         print '<td id="cfchange" style="display:none;" nowrap>';
61         print '<span title="クリティカルで自動的に振り足されるダイスを発言欄に入力します">回る:<input id="crolling" type="checkbox"></span>';
62         print '<span title="ファンブルで絶対失敗(0点扱い)になるダイスを発言欄に入力します。">絶対失敗:<input id="fzero" type="checkbox"></span>';
63         print "</td>\n";
64     }
65     print "<td nowrap>";
66     show_icon(DICE_ICON, "", "", "dice", "ダイス入力", "右で指定したダイスを入力します", "insertDice(this.form, columnId);");
67     print '<input type="submit" style="display:none;" onclick="insertDice(this.form, columnId);">';
68
69     if (SHORTCUT_DICE) {
70         show_icon(DICE_SHORTCUT_SHOW_ICON, DICE_SHORTCUT_HIDE_ICON, "", "dice_shortcut_icon", "↓", "ダイスショートカット欄をON/OFFします", "toggleColumn('dice_shortcut');");
71     }
72     // 市販ルール欄
73     if (USE_CONSUMER_RULES) {
74         show_icon(CONSUMER_RULES_OPEN_ICON, CONSUMER_RULES_CLOSE_ICON, "", "consumer_rule_icon", "†", "市販ルールの簡易使用欄をON/OFFします", 'toggleColumn(\'consumer_rule\');');
75     }
76     print "</td>\n";
77 }
78 print '<td class="nodisplay"></form></td>'."\n";
79 //=======ここまで:オンラインTRPG欄
80
81 // タグボタン
82 if (ALLOW_TAG) {
83     print '<td id="tags1" nowrap>';
84     $tag_num = count($GLOBALS['AJAX_CHAT_TRPG']['TAGS']);
85     for($i=0;$i<$tag_num;$i++) {
86         if ($GLOBALS['AJAX_CHAT_TRPG']['TAGS'][$i][1] && $GLOBALS['AJAX_CHAT_TRPG']['TAGS'][$i][3]) {
87             $tag = $GLOBALS['AJAX_CHAT_TRPG']['TAGS'][$i][0];
88             show_icon($GLOBALS['AJAX_CHAT_TRPG']['TAGS'][$i][2], "", "", "", $tag, $tag."タグ", "insertTag('$tag', columnId);");
89         }
90     }
91     print "</td>\n";
92     print '<td id="tags2">';
93     show_icon(INSERT_FONT_ICON, "", "", "", "F", "フォントタグ", "insertFontTag(columnId);");
94     print "</td>\n";
95 }
96 ?>
97 <td nowrap>
98 <?php
99 show_icon(RELOAD_ICON, "", "", "", "R", "チャット画面をリフレッシュ!", "window.mainframe.clearLog();");
100
101 $toggle_config = '';
102 if (FREEMAP_URL) {
103     $toggle_config .= 'toggleColumn(\'tools0\');';
104 }
105 if (!(DELETE_LAST_PASTLOG && !PUBLIC_PASTLOG)) {
106     $toggle_config .= 'toggleColumn(\'tools1\');toggleColumn(\'tools2\');';
107 }
108 if (COOKEI_EXPIRE && COOKIE) {
109     $toggle_config .= 'toggleColumn(\'tools3\');';
110 }
111 if (USE_MOBILE) {
112     $toggle_config .= 'toggleColumn(\'tools4\');';
113 }
114 if (CARD_ICON) {
115     $toggle_config .= 'toggleColumn(\'tools5\');';
116 }
117 show_icon(TOOLS_ICON, "", "", "", "TOOL", "過去ログ表示・クッキー保存アイコンなどの表示をON/OFFします", $toggle_config);
118
119 print "</td>";
120
121 // FreeMap連動
122 if (FREEMAP_URL) {
123     print '<td id="tools0" style="display:none;">';
124     print show_icon(FREEMAP_ICON, "", "", "freemap", "MAP", "マップとコマを使う", 'openUrl(\''.FREEMAP_URL.'\', \'map\'); return false;');
125     print '</td>';
126 }
127
128 // カード機能
129 if (USE_CARD) {
130     $onlick = "openNewWindow('card.php', 'card', true, 400, 500, true);";
131     print '<td id="tools5" style="display:none;">';
132     print show_icon(CARD_ICON, "", "", "card_icon", "card", "カード機能を使う", $onlick);
133     print '</td>';
134 }
135
136 // FreeMap連動
137 if (FREEMAP_URL) {
138     $onlick = "openNewWindow('".FREEMAP_URL."', 'map', false, '', '', true);";
139     print '<td id="tools0" style="display:none;">';
140     print show_icon(FREEMAP_ICON, "", "", "freemap", "MAP", "マップとコマを使う", $onlick);
141     print '</td>';
142 }
143
144 // 過去ログ表示
145 if (!DELETE_LAST_PASTLOG || PUBLIC_PASTLOG) {
146     print '<td id="tools1" style="display:none;">';
147     print show_icon(PASTLOG_SHOW_ICON, "", "", "pastlog_show", "ログ", "過去ログを見る", 'openUrl(\'pastlog_index.php\', \'pastlog\'); return false;');
148     print '</td>';
149 }
150 if (!DELETE_LAST_PASTLOG) {
151     print '<td id="tools2" style="display:none;">';
152     print show_icon(PASTLOG_DL_ICON, "", "", "pastlog_output", "DL", "過去ログをHTMLでダウンロード", "pastlogHtmlOutput();return false");
153     print "</td>\n";
154 }
155
156 if (COOKEI_EXPIRE && COOKIE) {
157     print '<td id="tools3" style="display:none;" nowrap>';
158     show_icon(COOKIE_WRITE_ICON, "", "", "", "CW", "チャットの設定をクッキーに保管します", "cookieWrite()")."\n";
159     show_icon(COOKIE_DELETE_ICON, "", "", "", "CD", "チャットのクッキーを削除します", "cookieDelete()")."\n";
160     show_icon(COOKIE_SAVE_ICON, "", "", "", "CD", "チャットの設定をファイルに保管します", "cookiesaveFile()")."\n";
161     print "</td>\n";
162 }
163 // 携帯使用
164 if (USE_MOBILE) {
165     print '<td id="tools4" style="display:none;">';
166     print show_icon(MOBILE_ICON, "", "", "mobile", "携帯", "携帯用URLを紹介", 'openUrl(\'info-mobile.php\', \'\'); return false;');
167     print '</td>'."\n";
168 }
169 print "<td>";
170 $onclick_help = 'toggleColumn(\'help_win\');';
171 show_icon(HELP_ICON, '', '', 'help_win_icon', '?', 'ヘルプをON/OFFします', $onclick_help);
172 ?>
173 </td>
174 <td align="right" id="logoutBt"><input type="button" value="退室" name="logout" class="logout" id="logout" /></td>
175 </table>
176
177 <?php
178 // ここから:TRPG市販ルール欄
179 if (DICE_MAX && USE_CONSUMER_RULES) {
180     print '<table border="0" cellspacing="3" cellpadding="0" id="consumer_rule" style="display:none;">'."\n";
181     print "<tr>";
182     // SW
183     if (SW) {
184         print '<td><td class="nodisplay"><form onsubmit="return false;"></td>';
185         print "<td>";
186         show_icon(SW_ICON, "", "", "", "SW", "SWレーティング振り欄をON/OFFします", "toggleColumn('cr_sw');");
187         print '</td><td id="cr_sw" ';
188         if (!SW_SHOW) {
189             print 'style="display:none;" ';
190         }
191         print 'nowrap>レーティング<input name="rating" id="rating" value="10" size="2">';
192         print ' + ';
193         print '<span title="修正値を入力してください"><input type="text" size="4" value="" name="sw_revision" id="sw_revision"></span>';
194         print '<span title="クリティカル値:「回らない」場合は空欄にして下さい"> C:';
195         print '<input type="text" size="1" value="10" name="sw_clit" id="sw_clit">';
196         print '</span>';
197         show_icon(DICE_ICON, "", "", "", "レーティング", "右で指定したレーティングを入力します。", "insertSWRating(this.form, columnId);");
198         print '<input type="submit" style="display:none;" onclick="insertSWRating(this.form, columnId);">';
199         print '<td class="nodisplay"></form></td>'."\n";
200     }
201
202     // 一定値以上の出目カウント
203     if (PICKUP) {
204         print '<td>';
205         show_icon(PICKUP_ICON, "", "", "", "↑↓", "指定値以上/以下の出目のみを数えます", "toggleColumn('cr_pickup');");
206         print '</td><td class="nodisplay"><form onsubmit="return false;"></td>'."\n";
207         print '<td id="cr_pickup" ';
208         if (!PICKUP_SHOW) {
209             print 'style="display:none;" ';
210         }
211         print 'nowrap>';
212         print '<input id="pickup_num" value="'.PICKUP_DEFAULT_DICE_NUM.'" size="2">d';
213         print '<input id="pickup_dice_number" value="'.PICKUP_DEFAULT_DICE_NUMBER.'" size="2"> ';
214         print '+';
215         print '<span title="修正値を入力してください"><input type="text" size="2" value="" id="pickup_revision"></span>';
216         print ' <input type="text" size="1" value="'.PICKUP_DEFAULT_NUMBER.'" id="pickup_number">';
217         print '<select id="u_l"><option value="u" selected>以上<option value="l">以下</select>';
218         print ' <span title="最大の出目のみを合計します 例:5d6=2,4,3,3,5 = 5">MAXのみ:<input id="pickup_count_max" type="checkbox"></span>';
219         print ' <span title="クリティカル値 8:「8で」クリティカル 8-:8「以上」でクリティカル">C:';
220         print '<input type="text" size="1" value="'.PICKUP_DEFAULT_CLIT.'" id="pickup_clit">';
221         print '</span>';
222         print ' <span title="クリティカルで振り足されるダイスを発言欄に入力します">振り足す:<input id="pickup_crolling" type="checkbox"></span>';
223
224         print ' <span title="クリティカルはダイス出目の最大値として扱います 例:d10 クリティカル値8以上で出目9 = 10扱い">C=MAX:<input id="pickup_c_max" type="checkbox"></span>';
225         show_icon(DICE_ICON, "", "", "dice", "ダイス入力", "右&上で指定したダイスを入力します。", "insertPickupDice(columnId);");
226     print '<input type="submit" style="display:none;" onclick="insertPickupDice(columnId);">';
227         print '<td class="nodisplay"></form></td>'."\n";
228     }
229
230     print '</td></tr></table>'."\n";
231 }
232 ?>
233 <!-- ここまで、市販ルールツール欄 -->
234
235 <!-- ここから、ダイスショートカット欄 -->
236 <?php
237 if (DICE_MAX && SHORTCUT_DICE) {
238     print '<table border="0" cellspacing="3" cellpadding="0" id="dice_shortcut" style="display:none;">'."\n";
239     print '<tr>'."\n";
240     for ($i=1;$i<=5;$i++) {
241         $dice_key = "dice_".$i;
242         print '<td class="nodisplay"><form onsubmit="return false;"></td>'."\n";
243         print '<td><input type="text" name="dice" class="diceShortCut" id="dice_'.$i.'" value="';
244         if (isset($cookies[$dice_key])) {
245             print $cookies[$dice_key];
246         }
247         print '" onfocus="javascript:selectedColumnId(this, false);javascript:expandDiceShortcut(this);" onblur="javascript:selectedColumnId(this, false);shrinkDiceShortcut(this);"></td>'."\n";
248         print "<td>\n";
249         show_icon(DICE_ICON, "", "", "", "D", "右欄に設定のダイスを入力します", "insert(document.getElementById(columnId), 'dice_$i', $('#dice_$i').attr('value'), 0);");
250         print "</td>\n";
251         print '<input type="submit" style="display:none;" onclick="insert(document.getElementById(columnId), \'dice_'.$i.'\', $(\'#dice_'.$i.'\').attr(\'value\'), 0);">';
252         print '<td class="nodisplay"></form></td>'."\n";
253     }
254     print "<td>";
255     show_icon(DICE_SHORTCUT_SHOW_ICON, "", "", "dice_shortcut_icon", "↓", "ダイスショートカット欄2行目をON/OFFします", 'toggleColumn(\'dice_shortcut_2\')');
256     print "</td></tr>\n";
257     print '<tr id="dice_shortcut_2" style="display:none;">'."\n";
258     for ($i=6;$i<=10;$i++) {
259         $dice_key = "dice_".$i;
260         print '<td class="nodisplay"><form onsubmit="return false;"></td>'."\n";
261         print '<td><input type="text" name="dice" class="diceShortCut" id="dice_'.$i.'" value="';
262         if (isset($cookies[$dice_key])) {
263             print $cookies[$dice_key];
264         }
265         print '" onfocus="javascript:selectedColumnId(this, false);javascript:expandDiceShortcut(this);" onblur="selectedColumnId(this, false);shrinkDiceShortcut(this);"></td>'."\n";
266         print '<td>';
267         show_icon(DICE_ICON, "", "", "dice", "D", "右欄に設定のダイスを入力します", "insert(document.getElementById(columnId), 'dice_$i', $('#dice_$i').attr('value'), 0);");
268         print "</td>\n";
269         print '<input type="submit" style="display:none;" onclick="insert(document.getElementById(columnId), \'dice_'.$i.'\', $(\'#dice_'.$i.'\').attr(\'value\'), 0);">';
270         print '<td class="nodisplay"></form></td>'."\n";
271     }
272     print '<td>&nbsp;</td>'."\n";
273     print '</tr></table>'."\n";
274 }
275 ?>
276
277 <!-- ここから、PC/NPC欄 -->
278 <?php
279 if (PC_NUM >= 1) {
280     for ($i=0; $i<PC_NUM; $i++) {
281         $pc_name_key = "pc_name_".$i;
282         $pc_color_key = "pc_color_".$i;
283         $pc_color_select_key = "pc_color_select_".$i;
284         $pc_status_key = "pc_status_".$i;
285         print '<table border="0" cellspacing="3" cellpadding="0" id="pc_'.$i.'" class="add_pc"; style="display:none;">'."\n";
286         print '<tr>'."\n";
287         print '<td class="nodisplay"><form onsubmit="return false;" id="'.$i.'"></td>'."\n";
288         print '<td><input type="submit" value="発言" class="" id="submit" style="display:inline" name="submit" onclick="comment(this.form, false)"></td>'."\n";
289         print '<td align="left" nowrap><input type="text" name="pc_name" value="';
290         if (isset($cookies[$pc_name_key])) {
291              $cookies[$pc_name_key];
292         }
293         print '" size="6" class="pc_name inputmain" id="pc_name_'.$i.'" style="font-weight:bold;';
294         if (isset($cookies[$pc_color_key])) {
295             print ' color:#'.$cookies[$pc_color_key];
296         }
297         print '" onblur="selectedColumnId(this, true)"></td>'."\n";
298
299 if (USER_WHISPER) {
300     print "<td>\n";
301     $onclick_whisper = "changeWhisperConfigClear(this);";
302     show_icon(WHISPER_ON_ICON, "", "", "whisper_mark_".$i, "∂","「ささやき」状態を表示", $onclick_whisper);
303     print "</td>\n";
304     print "<td>";
305     print '<input type="text" name="whisper_to" value="全員" size="6" class="whisper_to" id="whisper_to_'.$i.'" style="display:inline;">';
306     print '<input type="hidden" name="whisper_to_hash" class="whisper_to_hash" id="whisper_to_hash_'.$i.'" value="">';
307     print "</td>\n";
308 }
309
310         print '<td><input type="text" name="pc_input" class="input_comment inputmain" size="75%" id="pc_input_'.$i.'" onblur="selectedColumnId(this, true);">';
311         print "</td>\n";
312
313         print '<td>';
314         show_icon(PC_TEXTAREA_ICON, "", "", "", "拡大", "発言欄を広げます。改行可能になります", "changeTextareaPcName(this.form, 'input_textarea_$i');toggleColumn('input_textarea_$i');$('#pc_textarea_$i').focus();");
315         print '</td>';
316
317         print '<td>';
318         show_icon(PC_STATUS_ICON, "", "", "", "状態", "ステータス欄をON/OFFします", "toggleColumn('status_$i');");
319         if ($i != PC_NUM-1) {
320             $num = $i+1;
321             show_icon(PC_SHOW_ICON, PC_HIDE_ICON, "", "PC_btn_$i", "PC欄", "PC欄を追加/削除します", "toggleColumn('pc_$num');");
322         } else {
323             print " ";
324         }
325         print "</td>\n";
326         print '</tr>'."\n";
327         print '</table>'."\n";
328         // テキストエリア入力
329         $num = $i+1;
330         $top = 37 + 31*$i;
331         $body = '<dl><dt>'
332                .'<input type="button" value="発言" class="" id="submit" style="display:inline" onclick="comment(this.form, true)">'
333                .'</dt>';
334         $body .= '<dd><textarea name="pc_input_textarea" rows="3" cols="43" class="textarea_comment inputmain" id="pc_textarea_'.$i.'" onblur="selectedColumnId(this, true);"></textarea></dd>';
335         $body .= '</dl>';
336         write_console($top.'px', '190px', '350px', 'none', 'input_textarea_'.$i, '発言', $body, '', '', false);
337         print '<table border="0" cellspacing="3" cellpadding="0" class="status_column" id="status_'.$i.'" style="display:none;">'."\n";
338         print '<tr>'."\n";
339         print '<td nowrap>名前色</td>'."\n";
340         print '<td id="select_color_'.$i.'">';
341         print '<select onChange=\'changeColor(this)\' style="font-weight: bold;" id="pc_color_select_'.$i.'" class="inputmain" name="pc_color_select">'."\n";
342         if (isset($cookies[$pc_color_select_key])) {
343             colorbox("pc_color", $cookies[$pc_color_select_key]);
344         } else {
345             colorbox("pc_color");
346         }
347         print '</select></td>'."\n";
348         print '<td id="free_color_'.$i.'" style="display:none;"><input type="text" value="';
349         if (isset($cookies[$pc_color_key])) {
350             print $cookies[$pc_color_key];
351         }
352         print '" size="10" name="pc_color" id="pc_color_'.$i.'" style="font-weight: bold;';
353         if (isset($cookies[$pc_color_key])) {
354             print ' color:#'.$cookies[$pc_color_key];
355         }
356         print ';" onkeyup="changeColor(this)" class="inputmain"></td>'."\n";
357         print '<td>';
358         show_icon(PC_FONT_ICON, "", "", "", "F", "クリックでPC名文字色入力方法を変更できます", "toggleColumn('free_color_$i');toggleColumn('select_color_$i');");
359         print "</td>\n";
360         print '<td nowrap>ステータス:<input type="text" name="status" class="status inputmain" value="';
361         if (isset($cookies[$pc_status_key]) && $cookies[$pc_status_key]) { 
362             print $cookies[$pc_status_key];
363         } else {
364             print STATUS;
365         }
366         print '" id="pc_status_'.$i.'" onblur="selectedColumnId(this, true)"></td>'."\n";
367         print '<td><input name="show_status" type="checkbox" class="show_status"></td>'."\n";
368         print '<td nowrap> 表示</td>'."\n";
369         print '<td class="nodisplay"></form></td>'."\n";
370         print '</tr>'."\n";
371         print '</table>'."\n";
372     }
373 }
374  ?>
375
376 <!-- ここから:PLログイン画面欄  -->
377 <table border="0" cellspacing="3" cellpadding="0" id="offline" style="display:inline; height:30px;">
378 <tr>
379 <td class="nodisplay"><form id="chat_off" name="chat" onsubmit="return false;" action=""></td>
380 <td nowrap>お名前<input type="text" name="name_off" value="<?php if (isset($cookies['name_off']) && $cookies['name_off']) { print $cookies['name_off']; } else { print NONAME; } ?>" size="8" class="inputname" id="name_off"></td>
381 <td nowrap>パスワード<input type="password" name="pwd_off" size="6" class="inputpwd" id="pwd_off"></td>
382 <td width="35"><input type="submit" value="入室" name="login" class="login_btn_area" id="login" /></td>
383 <td><?php show_icon(RELOAD_ICON, "", "", "reload", "R", "チャット画面をリフレッシュ!", "window.mainframe.location.reload()"); ?></td>
384 <td class="nodisplay"></form></td>
385 <td><?php show_icon(HELP_ICON, '', '', 'help_win_icon', '?', 'ヘルプをON/OFFします', $onclick_help); ?></td>
386 <td class="nodisplay"><form action="<?php print HOME; ?>" target="<?php print HOME_TARGET; ?>"></td>
387 <td><input type="image" class="btn" src="<?php print HOME_ICON; ?>" value="submit" alt="ホーム" title="ホーム"></td>
388
389 <?php 
390 // FreeMap連動
391 if (FREEMAP_URL) {
392     print '<td>';
393     print show_icon(FREEMAP_ICON, "", "", "freemap", "MAP", "マップとコマを使う", 'openUrl(\''.FREEMAP_URL.'\', \'map\'); return false;');
394     print '</td>';
395 }
396
397 // 過去ログ表示
398 if (!(DELETE_LAST_PASTLOG && !PUBLIC_PASTLOG)) { 
399     print '<td>';
400     print show_icon(PASTLOG_SHOW_ICON, "", "", "pastlog_show", "ログ", "過去ログを見る", 'openUrl(\'./pastlog_index.php\', \'pastlog\'); return false;');
401     print '</td>';
402
403     if (!DELETE_LAST_PASTLOG) {
404         print '<td>';
405         print show_icon(PASTLOG_DL_ICON, "", "", "pastlog_output", "DL", "過去ログをHTMLでダウンロード", "pastlogHtmlOutput(); return false;");
406         print "</td>";
407     }
408 }
409
410 if (COOKEI_EXPIRE && COOKIE) {
411     print "<td>";
412     show_icon(COOKIE_LOAD_ICON, "", "", "", "CD", "チャットの設定をファイルから読み込みます", "toggleColumn('load_cookie'); return false;")."\n";
413     print "</td>\n";
414 }
415
416 // 携帯使用
417 if (USE_MOBILE) {
418     print '<td>';
419     print show_icon(MOBILE_ICON, "", "", "mobile", "携帯", "携帯用URLを紹介", 'openUrl(\'./info-mobile.php\', \'\'); return false;');
420     print '</td>';
421 }
422
423 ?>
424 <td class="nodisplay"></form></td>
425
426 </tr>
427 </table>