album_add.htm
24.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
<title>增加图片集</title>
<link href="css/base.css" rel="stylesheet" type="text/css">
<link href="css/swfupload.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../include/js/dedeajax2.js"></script>
<script type="text/javascript" src="js/calendar/calendar.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/album.js"></script>
<script type="text/javascript"src="js/handlers.js"></script>
<script type="text/javascript" src="../images/swfupload/swfupload.js"></script>
<script language="javascript">
var swfu = null;
var vcc = 0;
function LoadTestDiv()
{
var posLeft = 100; var posTop = 100;
var newobj = $Obj('_myhtml');
$Obj('imagebody').value = $Obj('copyhtml').innerHTML;
var dfstr = '粘贴到这里...';
if($Obj('imagebody').value.length <= dfstr.length)
{
alert('您还没有粘贴任何东西到编辑框哦!');
return;
}
if(!newobj){
newobj = document.createElement("DIV");
newobj.id = '_myhtml';
newobj.style.position='absolute';
newobj.className = "dlg2";
newobj.style.top = posTop;
newobj.style.left = posLeft;
document.body.appendChild(newobj);
}
else{
newobj.style.display = "block";
}
var myajax = new DedeAjax(newobj,false,true,'-','-','...');
var v = $Obj('imagebody').value;
vcc++;
<?php
if(strtolower(substr($cfg_soft_lang, 0, 3)) == 'utf') {
?>
//utf8
myajax.AddKeyUtf8('myhtml',v);
myajax.AddKeyUtf8('vcc',vcc);
myajax.SendPost2('album_testhtml.php');
<?php
}
elseif (strtolower(substr($cfg_soft_lang, 0, 2)) == 'gb') {
?>
//gbk
myajax.SendGet2("album_testhtml.php?vcc="+vcc+"&myhtml="+v);
<?php
}
?>
DedeXHTTP = null;
}
window.onload = function ()
{
swfu = new SWFUpload(
{
// Backend Settings
upload_url: "swfupload.php",
post_params: {"PHPSESSID": "<?php echo session_id(); ?>", "dopost" : ""},
// File Upload Settings
file_size_limit : "2 MB", // 2MB
file_types : "*.jpg; *.gif; *.png",
file_types_description : "选择 JPEG/GIF/PNG 格式图片",
file_upload_limit : "0",
file_queue_error_handler : fileQueueError,
file_dialog_complete_handler : fileDialogComplete,
upload_progress_handler : uploadProgress,
upload_error_handler : uploadError,
upload_success_handler : uploadSuccess,
upload_complete_handler : uploadComplete,
button_image_url : "../images/SmallSpyGlassWithTransperancy_17x18.png",
button_placeholder_id : "spanButtonPlaceholder",
button_width: 250,
button_height: 18,
button_text : '<span class="button">选择本地图片 <span class="buttonSmall">(单图最大为 2 MB,支持多选)</span></span>',
button_text_style : '.button { font-family: Helvetica, Arial, sans-serif; font-size: 12pt; } .buttonSmall { font-size: 10pt; }',
button_text_top_padding: 0,
button_text_left_padding: 18,
button_window_mode: SWFUpload.WINDOW_MODE.TRANSPARENT,
button_cursor: SWFUpload.CURSOR.HAND,
// Flash Settings
flash_url : "../images/swfupload/swfupload.swf",
custom_settings : {
upload_target : "divFileProgressContainer"
},
// Debug Settings
debug: false
});
};
</script>
</head>
<body topmargin="8" background="images/allbg.gif">
<form name="form1" action="album_add.php" enctype="multipart/form-data" method="post" onSubmit="return checkSubmitAlb();">
<input type="hidden" name="channelid" value="<?php echo $channelid?>" />
<input type="hidden" name="cid" value="<?php echo $cid; ?>" />
<input type="hidden" name="imagebody" value="" />
<input type="hidden" name="dopost" value="save" />
<input name="maxwidth" type="hidden" id="maxwidth" size="10" value="<?php echo $cfg_album_width; ?>" />
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="65%" height="30"><img height=14 src="images/book1.gif" width="20"/> <a href="catalog_do.php?cid=<?php echo $cid?>&channelid=<?php echo $channelid?>&dopost=listArchives"><u>图集列表</u></a> >> 发布新图集</td>
<td width="30%" align='right'><?php echo $backurl; ?><a href="catalog_main.php">[<u>栏目管理</u>]</a> </td>
</tr>
</table>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" id="head1">
<tr>
<td colspan="2">
<table width="168" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="84" height="24" align="center" background="images/itemnote1.gif"> 常规内容 </td>
<td width="84" align="center" background="images/itemnote2.gif"><a href="#" onClick="ShowItem2()"><u>高级参数</u></a> </td>
</tr>
</table></td>
</tr>
</table>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" id="head2" style="display:none">
<tr>
<td colspan="2">
<table width="168" height="24" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="84" align="center" background="images/itemnote2.gif"><a href="#" onClick="ShowItem1()"><u>常规内容</u></a> </td>
<td width="84" align="center" background="images/itemnote1.gif">高级参数 </td>
</tr>
</table></td>
</tr>
</table>
<table width="98%" border="0" align="center" cellpadding="2" cellspacing="2" id="needset" style="border:1px solid #cfcfcf;background:#ffffff;">
<tr>
<td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 图集标题:</td>
<td width='408'><input name="title" type="text" id="title" value="" style="width:388px"> </td>
<td width="90"> 简略标题:</td>
<td><input name="shorttitle" type="text" id="shorttitle" style="width:150px"> </td>
</tr>
</table></td>
</tr>
<tr>
<td width="400%" height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 自定义属性:</td>
<td><?php
$dsql->SetQuery("Select * From `#@__arcatt` order by sortid asc");
$dsql->Execute();
while($trow = $dsql->GetObject())
{
if($trow->att=='j')
echo "<input class='np' type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}' onclick='ShowUrlTr()'>{$trow->attname}[{$trow->att}]";
else
echo "<input class='np' type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}'>{$trow->attname}[{$trow->att}]";
}
?>
</td>
</tr>
</table>
</td>
</tr>
<tr id="redirecturltr" style="display:none">
<td height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 跳转网址:</td>
<td>
<input name="redirecturl" type="text" id="redirecturl" style="width:300px" value="" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="400%" height="24" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> TAG标签:</td>
<td>
<input name="tags" type="text" id="tags" value="" style="width:300px" />(','号分开,单个标签小于12字节)
</td>
<td width="47">权重:</td>
<td width="122"><input name="weight" type="text" id="weight" style="width:50px" value="<?php echo $maxWright['cc'];?>" />(越小越靠前)</td>
</tr>
</table>
</td>
</tr>
<tr id="pictable">
<td height="24" colspan="4" class="bline"> <table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 缩 略 图:</td>
<td>
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td height="30">
<input name="picname" type="text" id="picname" style="width:240px" />
<input type="button" value="本地上传" style="width:70px;cursor:pointer;" />
<iframe name='uplitpicfra' id='uplitpicfra' src='' style='display:none'></iframe>
<span class="litpic_span"><input name="litpic" type="file" id="litpic" onChange="seePicNewAlb(this, 'divpicview', 'uplitpicfra', 165, 'album_add.php');" size="1" class='np coolbg'/></span>
<input type="button" name="Submit2" value="站内选择" style="margin-left:8px;" onClick="SelectImage('form1.picname','small');" class='np coolbg'/>
<input type="button" name="Submit2" value="裁剪" style="margin-left:8px;" onClick="imageCut('picname');" class='np coolbg'/>
<input type='checkbox' class='np' name='ddisremote' value='1' id='ddisremote'/>远程
<br />
<input type='checkbox' class='np' name='ddisfirst' value='1' />使用图集的第一幅图
</td>
</tr>
</table>
</td>
<td width="150" align="center">
<div id='divpicview' class='divpre'></div>
</td>
</tr>
</table></td>
</tr>
<tr>
<td height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 图集主栏目:</td>
<td>
<span id='typeidct'>
<?php
$typeOptions = GetOptionList($cid,$cuserLogin->getUserChannel(),$channelid);
echo "<select name='typeid' id='typeid' style='width:240px'>\r\n";
echo "<option value='0'>请选择栏目...</option>\r\n";
echo $typeOptions;
echo "</select>";
?></span>
<img src='images/menusearch.gif' style='cursor:pointer;' onClick="ShowCatMap(event, this, <?php echo $channelid; ?>, 'typeid')" alt='快捷选择' title='快捷选择' />
<?php
if($cfg_need_typeid2=='Y')
{
echo "<a href='javascript:AddTypeid2();'>【<u>选择副栏目</u>】</a>";
}
?>
<?php
if($cfg_remote_site=='Y')
{
?>
<input name="isremote" type="checkbox" id="isremote" value="1" <?php if($cfg_title_site=='Y') echo "checked";?>>是否同步远程发布 <?php GetFtp();?> <?php
}
?> </td>
</tr>
</table>
</td>
</tr>
<tr id='typeid2tr' style='display:none'>
<td height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 图集副栏目:</td>
<td>
<span id='typeid2ct'></span><input type='text' name='typeid2' id='typeid2' value='' style='width:200px;' />
<img src='images/menusearch2.gif' style='cursor:pointer;' onClick="ShowCatMap(event, this, <?php echo $channelid; ?>, 'typeid2')" alt='选择副栏目' title='选择副栏目' />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td><?php PrintAutoFieldsAdd($cInfos['fieldset'],'autofield'); ?></td>
</tr>
<tr>
<td height="24" bgcolor="#F9FCEF" class="bline2"> <strong>图集选项:</strong></td>
</tr>
<tr>
<td height="24" colspan="4" class="bline" style="padding-top:6px">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="80"> <b>表现方式:</b></td>
<td>
<input name="pagestyle" class="np" type="radio" id="pagestyle1" onClick="checkMuList()" value="1"<?php if($cfg_album_style==1) echo " checked='checked'"; ?> />
<img src='images/alb2.gif' alt='单页多图样式' title='单页多图样式' />
<input name="pagestyle" class="np" type="radio" id="pagestyle2" onClick="checkMuList()" value="2"<?php if($cfg_album_style==2) echo " checked='checked'"; ?> />
<img src='images/alb1.gif' alt='幻灯片样式' title='幻灯片样式' />
<input name="pagestyle" class="np" type="radio" id="pagestyle3" onClick="checkMuList()" value="3"<?php if($cfg_album_style==3) echo " checked='checked'"; ?>/>
<img src='images/alb3.gif' alt='多缩略图样式' title='多缩略图样式' />
</td>
</tr>
</table></td>
</tr>
<tr id='cfgmulist' style='display:none'>
<td height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="26"> 多列式参数:</td>
<td>行
<input name="row" type="text" id="row" value="<?php echo $cfg_album_row; ?>" size="6">
列
<input name="col" type="text" id="col" value="<?php echo $cfg_album_col; ?>" size="6">
缩略图宽度限制:
<input name="ddmaxwidth" type="text" id="ddmaxwidth" value="<?php echo $cfg_album_ddwidth; ?>" size="6">
像素</td>
</tr>
<tr>
<td width="80" height="26"> </td>
<td><strong>(系统仅是每页输出"行x列"张图片,实现需自行控制样式表)</strong></td>
</tr>
</table></td>
</tr>
<tr id='spagelist' style='display:none'>
<td height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="95"> 每页图片数:</td>
<td>
<input name='pagepicnum' type='text' id='pagpicnum' size='10' value='<?php echo $cfg_album_pagesize; ?>' />
单页多图显示需要设置此参数,这种模式下系统不会为每张图单独生成缩略图。
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> <b>上传方式:</b></td>
<td>
<input name="isrm" class="np" type="hidden" id="isrm" value="1" />
<input name="byhand" class="np" type="checkbox" id="byhand" value="1" disabled="ture" checked />
手工上传
<input name="formzip" class="np" type="checkbox" id="formzip" value="1" onClick="showZipField(this,'zipff','htmlfield');" />
从ZIP压缩包中解压图片
<input name="formhtml" class="np" type="checkbox" id="formhtml" value="1" onClick="showHtmlField(this,'htmlfield','zipff');" />
网上复制图片
</td>
</tr>
</table></td>
</tr>
<tr id="zipff" style="display:none">
<td colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0" height="100">
<tr>
<td width="90"> 压缩包文件:</td>
<td><input type='text' name='zipfile' id='zipfile' style='width:300px'>
<input name='addon_bt' type='button' class='inputbut' value='浏览...' onClick="SelectSoft('form1.zipfile')">
<input name="delzip" type="checkbox" id="delzip" value="1" checked="checked" />
处理后删除压缩文件 </td>
</tr>
</table></td>
</tr>
<tr id="htmlfield" style="display:none">
<td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 网上复制:</td>
<td> 复制的源网址:
<input name='copysource' type='text' value='http://' style='width:250px'/>
(防盗链网站需填写您复制图片的其中一个网页网址) <br />
把图片从别的网页复制,在这里用Ctrl+V粘贴,提交后程序可直接获取这个区域的所有图片
<input type="button" name="button" id="button" value="预览" onClick="LoadTestDiv()">
<br />
<div id='copyhtml' style='margin-top:6px;margin-bottom:6px;border:solid 1px #CCCCCC;width:96%;padding:6px;height:250px;width:100%' contenteditable="true">粘贴到这里...</div> </td>
</tr>
</table></td>
</tr>
<tr>
<td width="100%" height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="80" height="40"> <b>手工上传:</b></td>
<td>
<div style="display: inline; border: solid 1px #7FAAFF; background-color: #C5D9FF; padding: 2px;">
<span id="spanButtonPlaceholder"></span>
</div>
</td>
</tr>
</table></td>
</tr>
<tr id="handfield">
<td colspan="4" class="bline" style="background:url(images/albviewbg.gif) #fff 0 20px no-repeat;">
<table width='100%' height='160' style="margin:0 0 20px 0">
<tr>
<td>
<div id="divFileProgressContainer" style="height:75px;"></div>
<div id="thumbnails"></div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="24" colspan="4">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 图集内容:</td>
<td> <?php GetEditor("body","",450,"Diy"); ?></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- //高级参数 -->
<table width="98%" border="0" align="center" cellpadding="2" cellspacing="2" id="adset" style="border:1px solid #cfcfcf;background:#ffffff;display:none">
<tr>
<td height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 图集来源:</td>
<td width="240"><input name="source" type="text" id="source" style="width:160px" value="" size="16">
<input name="selsource" type="button" id="selsource" value="选择"></td>
<td width="90">作 者:</td>
<td>
<input name="writer" type="text" id="writer" style="width:120px" value="">
<input name="selwriter" type="button" id="selwriter" value="选择">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90" height="22" width="240"> 评论选项:</td>
<td width="240">
<input type='radio' name='notpost' class='np' value='0' <?php if($cfg_feedback_forbid=='N') echo "checked='1' "; ?> />允许评论
<input type='radio' name='notpost' class='np' value='1' <?php if($cfg_feedback_forbid=='Y') echo "checked='1' "; ?> />禁止评论
</td>
<td width="90">浏览次数:</td>
<td>
<input type='text' name='click' value='<?php echo ($cfg_arc_click=='-1' ? mt_rand(50, 200) : $cfg_arc_click); ?>' style='width:100px;' />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90" height="22"> 图集排序:</td>
<td width="240"> <select name="sortup" id="sortup" style="width:150">
<option value="0" selected>默认排序</option>
<option value="7">置顶一周</option>
<option value="30">置顶一个月</option>
<option value="90">置顶三个月</option>
<option value="180">置顶半年</option>
<option value="360">置顶一年</option>
</select> </td>
<td width="90">标题颜色:</td>
<td>
<input name="color" type="text" id="color" style="width:120px">
<input name="modcolor" type="button" id="modcolor" value="选取" onClick="ShowColor(event,this)"> </td>
</tr>
</table></td>
</tr>
<tr>
<td height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 阅读权限:</td>
<td width="240"> <select name="arcrank" id="arcrank" style="width:150px">
<?php
$urank = $cuserLogin->getUserRank();
$dsql->SetQuery("Select * from `#@__arcrank` where adminrank<='$urank'");
$dsql->Execute();
while($row = $dsql->GetObject())
{
echo " <option value='".$row->rank."'>".$row->membername."</option>\r\n";
}
?>
</select> </td>
<td width="90">发布选项:</td>
<td>
<input name="ishtml" type="radio" class="np" value="1" checked>
生成HTML
<input type="radio" name="ishtml" class="np" value="0">
仅动态浏览
</td>
</tr>
</table></td>
</tr>
<tr>
<td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 发布时间:</td>
<td width="241"><?php
$nowtime = GetDateTimeMk(time());
echo "<input name=\"pubdate\" value=\"$nowtime\" type=\"text\" id=\"pubdate\" style=\"width:120;\">";
?> <script language="javascript" type="text/javascript">
Calendar.setup({
inputField : "pubdate",
ifFormat : "%Y-%m-%d %H:%M:%S",
showsTime : true,
timeFormat : "24"
});
</script> </td>
<td width="90">消费金币:</td>
<td width="379"><input name="money" type="text" id="money" value="0" size="10"> </td>
</tr>
</table></td>
</tr>
<tr>
<td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 关键字:</td>
<td colspan="2"><input type='text' name="keywords" id="keywords" style="width:290px;" value="" /><input type="button" name="Submit" value="浏览..." style="width:56;height:20" onClick="SelectKeywords('form1.keywords');"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="24" colspan="4" class="bline">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 图集内容摘要:</td>
<td width="449"><textarea name="description" rows="3" id="description" style="width:80%"></textarea></td>
<td width="261"> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="24" colspan="4">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="90"> 自定义文件名:</td>
<td width="449"><input type="text" name="filename" id="filename" />(不包括后缀名如.html等)</td>
<td width="261"> </td>
</tr>
</table>
</td>
</tr>
</table>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#F9FCEF" style="border:1px solid #cfcfcf;border-top:none;">
<tr>
<td height="35">
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td width="17%"> </td>
<td width="83%"><table width="214" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="115">
<input name="imageField" type="image" src="images/button_ok.gif" width="60" height="22" border="0" class="np" />
</td>
<td width="99">
<img src="images/button_reset.gif" width="60" height="22" border="0" onClick="location.reload();" style="cursor:pointer;" />
</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</form>
<script language='javascript'>InitPage();</script>
</body>
</html>