/admin/view/template/setting/store_form.tpl

https://github.com/sansanwawa/e-commerse · Smarty Template · 486 lines · 483 code · 3 blank · 0 comment · 64 complexity · f98d39051a93a28594b876f88b7c67e4 MD5 · raw file

  1. <?php echo $header; ?>
  2. <div id="content">
  3. <div class="breadcrumb">
  4. <?php foreach ($breadcrumbs as $breadcrumb) { ?>
  5. <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
  6. <?php } ?>
  7. </div>
  8. <?php if ($error_warning) { ?>
  9. <div class="warning"><?php echo $error_warning; ?></div>
  10. <?php } ?>
  11. <?php if ($success) { ?>
  12. <div class="success"><?php echo $success; ?></div>
  13. <?php } ?>
  14. <div class="box">
  15. <div class="heading">
  16. <h1><img src="view/image/setting.png" alt="" /> <?php echo $heading_title; ?></h1>
  17. <div class="buttons"><a onclick="$('#form').submit();" class="button"><span><?php echo $button_save; ?></span></a><a onclick="location = '<?php echo $cancel; ?>';" class="button"><span><?php echo $button_cancel; ?></span></a></div>
  18. </div>
  19. <div class="content">
  20. <div id="tabs" class="htabs"><a href="#tab-general"><?php echo $tab_general; ?></a><a href="#tab-store"><?php echo $tab_store; ?></a><a href="#tab-local"><?php echo $tab_local; ?></a><a href="#tab-option"><?php echo $tab_option; ?></a><a href="#tab-image"><?php echo $tab_image; ?></a><a href="#tab-server"><?php echo $tab_server; ?></a></div>
  21. <form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="form">
  22. <div id="tab-general">
  23. <table class="form">
  24. <tr>
  25. <td><span class="required">*</span> <?php echo $entry_url; ?></td>
  26. <td><input type="text" name="config_url" value="<?php echo $config_url; ?>" size="40" />
  27. <?php if ($error_url) { ?>
  28. <span class="error"><?php echo $error_url; ?></span>
  29. <?php } ?></td>
  30. </tr>
  31. <tr>
  32. <td><?php echo $entry_ssl; ?></td>
  33. <td><input type="text" name="config_ssl" value="<?php echo $config_ssl; ?>" size="40" /></td>
  34. </tr>
  35. <tr>
  36. <td><span class="required">*</span> <?php echo $entry_name; ?></td>
  37. <td><input type="text" name="config_name" value="<?php echo $config_name; ?>" size="40" />
  38. <?php if ($error_name) { ?>
  39. <span class="error"><?php echo $error_name; ?></span>
  40. <?php } ?></td>
  41. </tr>
  42. <tr>
  43. <td><span class="required">*</span> <?php echo $entry_owner; ?></td>
  44. <td><input type="text" name="config_owner" value="<?php echo $config_owner; ?>" size="40" />
  45. <?php if ($error_owner) { ?>
  46. <span class="error"><?php echo $error_owner; ?></span>
  47. <?php } ?></td>
  48. </tr>
  49. <tr>
  50. <td><span class="required">*</span> <?php echo $entry_address; ?></td>
  51. <td><textarea name="config_address" cols="40" rows="5"><?php echo $config_address; ?></textarea>
  52. <?php if ($error_address) { ?>
  53. <span class="error"><?php echo $error_address; ?></span>
  54. <?php } ?></td>
  55. </tr>
  56. <tr>
  57. <td><span class="required">*</span> <?php echo $entry_email; ?></td>
  58. <td><input type="text" name="config_email" value="<?php echo $config_email; ?>" size="40" />
  59. <?php if ($error_email) { ?>
  60. <span class="error"><?php echo $error_email; ?></span>
  61. <?php } ?></td>
  62. </tr>
  63. <tr>
  64. <td><span class="required">*</span> <?php echo $entry_telephone; ?></td>
  65. <td><input type="text" name="config_telephone" value="<?php echo $config_telephone; ?>" />
  66. <?php if ($error_telephone) { ?>
  67. <span class="error"><?php echo $error_telephone; ?></span>
  68. <?php } ?></td>
  69. </tr>
  70. <tr>
  71. <td><?php echo $entry_fax; ?></td>
  72. <td><input type="text" name="config_fax" value="<?php echo $config_fax; ?>" /></td>
  73. </tr>
  74. </table>
  75. </div>
  76. <div id="tab-store">
  77. <table class="form">
  78. <tr>
  79. <td><span class="required">*</span> <?php echo $entry_title; ?></td>
  80. <td><input type="text" name="config_title" value="<?php echo $config_title; ?>" />
  81. <?php if ($error_title) { ?>
  82. <span class="error"><?php echo $error_title; ?></span>
  83. <?php } ?></td>
  84. </tr>
  85. <tr>
  86. <td><?php echo $entry_meta_description; ?></td>
  87. <td><textarea name="config_meta_description" cols="40" rows="5"><?php echo $config_meta_description; ?></textarea></td>
  88. </tr>
  89. <tr>
  90. <td><?php echo $entry_template; ?></td>
  91. <td><select name="config_template" onchange="$('#template').load('index.php?route=setting/store/template&token=<?php echo $token; ?>&template=' + encodeURIComponent(this.value));">
  92. <?php foreach ($templates as $template) { ?>
  93. <?php if ($template == $config_template) { ?>
  94. <option value="<?php echo $template; ?>" selected="selected"><?php echo $template; ?></option>
  95. <?php } else { ?>
  96. <option value="<?php echo $template; ?>"><?php echo $template; ?></option>
  97. <?php } ?>
  98. <?php } ?>
  99. </select></td>
  100. </tr>
  101. <tr>
  102. <td></td>
  103. <td id="template"></td>
  104. </tr>
  105. <tr>
  106. <td><?php echo $entry_layout; ?></td>
  107. <td><select name="config_layout">
  108. <?php foreach ($layouts as $layout) { ?>
  109. <?php if ($layout['layout_id'] == $config_layout_id) { ?>
  110. <option value="<?php echo $layout['layout_id']; ?>" selected="selected"><?php echo $layout['name']; ?></option>
  111. <?php } else { ?>
  112. <option value="<?php echo $layout['layout_id']; ?>"><?php echo $layout['name']; ?></option>
  113. <?php } ?>
  114. <?php } ?>
  115. </select></td>
  116. </tr>
  117. </table>
  118. </div>
  119. <div id="tab-local">
  120. <table class="form">
  121. <tr>
  122. <td><?php echo $entry_country; ?></td>
  123. <td><select name="config_country_id" onchange="$('select[name=\'config_zone_id\']').load('index.php?route=setting/store/zone&token=<?php echo $token; ?>&country_id=' + this.value + '&zone_id=<?php echo $config_zone_id; ?>');">
  124. <?php foreach ($countries as $country) { ?>
  125. <?php if ($country['country_id'] == $config_country_id) { ?>
  126. <option value="<?php echo $country['country_id']; ?>" selected="selected"><?php echo $country['name']; ?></option>
  127. <?php } else { ?>
  128. <option value="<?php echo $country['country_id']; ?>"><?php echo $country['name']; ?></option>
  129. <?php } ?>
  130. <?php } ?>
  131. </select></td>
  132. </tr>
  133. <tr>
  134. <td><?php echo $entry_zone; ?></td>
  135. <td><select name="config_zone_id">
  136. </select></td>
  137. </tr>
  138. <tr>
  139. <td><?php echo $entry_language; ?></td>
  140. <td><select name="config_language">
  141. <?php foreach ($languages as $language) { ?>
  142. <?php if ($language['code'] == $config_language) { ?>
  143. <option value="<?php echo $language['code']; ?>" selected="selected"><?php echo $language['name']; ?></option>
  144. <?php } else { ?>
  145. <option value="<?php echo $language['code']; ?>"><?php echo $language['name']; ?></option>
  146. <?php } ?>
  147. <?php } ?>
  148. </select></td>
  149. </tr>
  150. <tr>
  151. <td><?php echo $entry_currency; ?></td>
  152. <td><select name="config_currency">
  153. <?php foreach ($currencies as $currency) { ?>
  154. <?php if ($currency['code'] == $config_currency) { ?>
  155. <option value="<?php echo $currency['code']; ?>" selected="selected"><?php echo $currency['title']; ?></option>
  156. <?php } else { ?>
  157. <option value="<?php echo $currency['code']; ?>"><?php echo $currency['title']; ?></option>
  158. <?php } ?>
  159. <?php } ?>
  160. </select></td>
  161. </tr>
  162. </table>
  163. </div>
  164. <div id="tab-option">
  165. <table class="form">
  166. <tr>
  167. <td><span class="required">*</span> <?php echo $entry_catalog_limit; ?></td>
  168. <td><input type="text" name="config_catalog_limit" value="<?php echo $config_catalog_limit; ?>" size="3" />
  169. <?php if ($error_catalog_limit) { ?>
  170. <span class="error"><?php echo $error_catalog_limit; ?></span>
  171. <?php } ?></td>
  172. </tr>
  173. <tr>
  174. <td><?php echo $entry_tax; ?></td>
  175. <td><?php if ($config_tax) { ?>
  176. <input type="radio" name="config_tax" value="1" checked="checked" />
  177. <?php echo $text_yes; ?>
  178. <input type="radio" name="config_tax" value="0" />
  179. <?php echo $text_no; ?>
  180. <?php } else { ?>
  181. <input type="radio" name="config_tax" value="1" />
  182. <?php echo $text_yes; ?>
  183. <input type="radio" name="config_tax" value="0" checked="checked" />
  184. <?php echo $text_no; ?>
  185. <?php } ?></td>
  186. </tr>
  187. <tr>
  188. <td><?php echo $entry_customer_group; ?></td>
  189. <td><select name="config_customer_group_id">
  190. <?php foreach ($customer_groups as $customer_group) { ?>
  191. <?php if ($customer_group['customer_group_id'] == $config_customer_group_id) { ?>
  192. <option value="<?php echo $customer_group['customer_group_id']; ?>" selected="selected"><?php echo $customer_group['name']; ?></option>
  193. <?php } else { ?>
  194. <option value="<?php echo $customer_group['customer_group_id']; ?>"><?php echo $customer_group['name']; ?></option>
  195. <?php } ?>
  196. <?php } ?>
  197. </select></td>
  198. </tr>
  199. <tr>
  200. <td><?php echo $entry_customer_price; ?></td>
  201. <td><?php if ($config_customer_price) { ?>
  202. <input type="radio" name="config_customer_price" value="1" checked="checked" />
  203. <?php echo $text_yes; ?>
  204. <input type="radio" name="config_customer_price" value="0" />
  205. <?php echo $text_no; ?>
  206. <?php } else { ?>
  207. <input type="radio" name="config_customer_price" value="1" />
  208. <?php echo $text_yes; ?>
  209. <input type="radio" name="config_customer_price" value="0" checked="checked" />
  210. <?php echo $text_no; ?>
  211. <?php } ?></td>
  212. </tr>
  213. <tr>
  214. <td><?php echo $entry_customer_approval; ?></td>
  215. <td><?php if ($config_customer_approval) { ?>
  216. <input type="radio" name="config_customer_approval" value="1" checked="checked" />
  217. <?php echo $text_yes; ?>
  218. <input type="radio" name="config_customer_approval" value="0" />
  219. <?php echo $text_no; ?>
  220. <?php } else { ?>
  221. <input type="radio" name="config_customer_approval" value="1" />
  222. <?php echo $text_yes; ?>
  223. <input type="radio" name="config_customer_approval" value="0" checked="checked" />
  224. <?php echo $text_no; ?>
  225. <?php } ?></td>
  226. </tr>
  227. <tr>
  228. <td><?php echo $entry_guest_checkout; ?></td>
  229. <td><?php if ($config_guest_checkout) { ?>
  230. <input type="radio" name="config_guest_checkout" value="1" checked="checked" />
  231. <?php echo $text_yes; ?>
  232. <input type="radio" name="config_guest_checkout" value="0" />
  233. <?php echo $text_no; ?>
  234. <?php } else { ?>
  235. <input type="radio" name="config_guest_checkout" value="1" />
  236. <?php echo $text_yes; ?>
  237. <input type="radio" name="config_guest_checkout" value="0" checked="checked" />
  238. <?php echo $text_no; ?>
  239. <?php } ?></td>
  240. </tr>
  241. <tr>
  242. <td><?php echo $entry_account; ?></td>
  243. <td><select name="config_account_id">
  244. <option value="0"><?php echo $text_none; ?></option>
  245. <?php foreach ($informations as $information) { ?>
  246. <?php if ($information['information_id'] == $config_account_id) { ?>
  247. <option value="<?php echo $information['information_id']; ?>" selected="selected"><?php echo $information['title']; ?></option>
  248. <?php } else { ?>
  249. <option value="<?php echo $information['information_id']; ?>"><?php echo $information['title']; ?></option>
  250. <?php } ?>
  251. <?php } ?>
  252. </select></td>
  253. </tr>
  254. <tr>
  255. <td><?php echo $entry_checkout; ?></td>
  256. <td><select name="config_checkout_id">
  257. <option value="0"><?php echo $text_none; ?></option>
  258. <?php foreach ($informations as $information) { ?>
  259. <?php if ($information['information_id'] == $config_checkout_id) { ?>
  260. <option value="<?php echo $information['information_id']; ?>" selected="selected"><?php echo $information['title']; ?></option>
  261. <?php } else { ?>
  262. <option value="<?php echo $information['information_id']; ?>"><?php echo $information['title']; ?></option>
  263. <?php } ?>
  264. <?php } ?>
  265. </select></td>
  266. </tr>
  267. <tr>
  268. <td><?php echo $entry_stock_display; ?></td>
  269. <td><?php if ($config_stock_display) { ?>
  270. <input type="radio" name="config_stock_display" value="1" checked="checked" />
  271. <?php echo $text_yes; ?>
  272. <input type="radio" name="config_stock_display" value="0" />
  273. <?php echo $text_no; ?>
  274. <?php } else { ?>
  275. <input type="radio" name="config_stock_display" value="1" />
  276. <?php echo $text_yes; ?>
  277. <input type="radio" name="config_stock_display" value="0" checked="checked" />
  278. <?php echo $text_no; ?>
  279. <?php } ?></td>
  280. </tr>
  281. <tr>
  282. <td><?php echo $entry_stock_checkout; ?></td>
  283. <td><?php if ($config_stock_checkout) { ?>
  284. <input type="radio" name="config_stock_checkout" value="1" checked="checked" />
  285. <?php echo $text_yes; ?>
  286. <input type="radio" name="config_stock_checkout" value="0" />
  287. <?php echo $text_no; ?>
  288. <?php } else { ?>
  289. <input type="radio" name="config_stock_checkout" value="1" />
  290. <?php echo $text_yes; ?>
  291. <input type="radio" name="config_stock_checkout" value="0" checked="checked" />
  292. <?php echo $text_no; ?>
  293. <?php } ?></td>
  294. </tr>
  295. <tr>
  296. <td><?php echo $entry_order_status; ?></td>
  297. <td><select name="config_order_status_id">
  298. <?php foreach ($order_statuses as $order_status) { ?>
  299. <?php if ($order_status['order_status_id'] == $config_order_status_id) { ?>
  300. <option value="<?php echo $order_status['order_status_id']; ?>" selected="selected"><?php echo $order_status['name']; ?></option>
  301. <?php } else { ?>
  302. <option value="<?php echo $order_status['order_status_id']; ?>"><?php echo $order_status['name']; ?></option>
  303. <?php } ?>
  304. <?php } ?>
  305. </select></td>
  306. </tr>
  307. <tr>
  308. <td><?php echo $entry_cart_weight; ?></td>
  309. <td><?php if ($config_cart_weight) { ?>
  310. <input type="radio" name="config_cart_weight" value="1" checked="checked" />
  311. <?php echo $text_yes; ?>
  312. <input type="radio" name="config_cart_weight" value="0" />
  313. <?php echo $text_no; ?>
  314. <?php } else { ?>
  315. <input type="radio" name="config_cart_weight" value="1" />
  316. <?php echo $text_yes; ?>
  317. <input type="radio" name="config_cart_weight" value="0" checked="checked" />
  318. <?php echo $text_no; ?>
  319. <?php } ?></td>
  320. </tr>
  321. </table>
  322. </div>
  323. <div id="tab-image">
  324. <table class="form">
  325. <tr>
  326. <td><?php echo $entry_logo; ?></td>
  327. <td><input type="hidden" name="config_logo" value="<?php echo $config_logo; ?>" id="logo" />
  328. <img src="<?php echo $logo; ?>" alt="" id="preview-logo" class="image" onclick="image_upload('logo', 'preview-logo');" /></td>
  329. </tr>
  330. <tr>
  331. <td><?php echo $entry_icon; ?></td>
  332. <td><input type="hidden" name="config_icon" value="<?php echo $config_icon; ?>" id="icon" />
  333. <img src="<?php echo $icon; ?>" alt="" id="preview-icon" class="image" onclick="image_upload('icon', 'preview-icon');" /></td>
  334. </tr>
  335. <tr>
  336. <td><span class="required">*</span> <?php echo $entry_image_thumb; ?></td>
  337. <td><input type="text" name="config_image_thumb_width" value="<?php echo $config_image_thumb_width; ?>" size="3" />
  338. x
  339. <input type="text" name="config_image_thumb_height" value="<?php echo $config_image_thumb_height; ?>" size="3" />
  340. <?php if ($error_image_thumb) { ?>
  341. <span class="error"><?php echo $error_image_thumb; ?></span>
  342. <?php } ?></td>
  343. </tr>
  344. <tr>
  345. <td><span class="required">*</span> <?php echo $entry_image_popup; ?></td>
  346. <td><input type="text" name="config_image_popup_width" value="<?php echo $config_image_popup_width; ?>" size="3" />
  347. x
  348. <input type="text" name="config_image_popup_height" value="<?php echo $config_image_popup_height; ?>" size="3" />
  349. <?php if ($error_image_popup) { ?>
  350. <span class="error"><?php echo $error_image_popup; ?></span>
  351. <?php } ?></td>
  352. </tr>
  353. <tr>
  354. <td><span class="required">*</span> <?php echo $entry_image_product; ?></td>
  355. <td><input type="text" name="config_image_product_width" value="<?php echo $config_image_product_width; ?>" size="3" />
  356. x
  357. <input type="text" name="config_image_product_height" value="<?php echo $config_image_product_height; ?>" size="3" />
  358. <?php if ($error_image_product) { ?>
  359. <span class="error"><?php echo $error_image_product; ?></span>
  360. <?php } ?></td>
  361. </tr>
  362. <tr>
  363. <td><span class="required">*</span> <?php echo $entry_image_category; ?></td>
  364. <td><input type="text" name="config_image_category_width" value="<?php echo $config_image_category_width; ?>" size="3" />
  365. x
  366. <input type="text" name="config_image_category_height" value="<?php echo $config_image_category_height; ?>" size="3" />
  367. <?php if ($error_image_category) { ?>
  368. <span class="error"><?php echo $error_image_category; ?></span>
  369. <?php } ?></td>
  370. </tr>
  371. <tr>
  372. <td><span class="required">*</span> <?php echo $entry_image_manufacturer; ?></td>
  373. <td><input type="text" name="config_image_manufacturer_width" value="<?php echo $config_image_manufacturer_width; ?>" size="3" />
  374. x
  375. <input type="text" name="config_image_manufacturer_height" value="<?php echo $config_image_manufacturer_height; ?>" size="3" />
  376. <?php if ($error_image_manufacturer) { ?>
  377. <span class="error"><?php echo $error_image_manufacturer; ?></span>
  378. <?php } ?></td>
  379. </tr>
  380. <tr>
  381. <td><span class="required">*</span> <?php echo $entry_image_additional; ?></td>
  382. <td><input type="text" name="config_image_additional_width" value="<?php echo $config_image_additional_width; ?>" size="3" />
  383. x
  384. <input type="text" name="config_image_additional_height" value="<?php echo $config_image_additional_height; ?>" size="3" />
  385. <?php if ($error_image_additional) { ?>
  386. <span class="error"><?php echo $error_image_additional; ?></span>
  387. <?php } ?></td>
  388. </tr>
  389. <tr>
  390. <td><span class="required">*</span> <?php echo $entry_image_related; ?></td>
  391. <td><input type="text" name="config_image_related_width" value="<?php echo $config_image_related_width; ?>" size="3" />
  392. x
  393. <input type="text" name="config_image_related_height" value="<?php echo $config_image_related_height; ?>" size="3" />
  394. <?php if ($error_image_related) { ?>
  395. <span class="error"><?php echo $error_image_related; ?></span>
  396. <?php } ?></td>
  397. </tr>
  398. <tr>
  399. <td><span class="required">*</span> <?php echo $entry_image_compare; ?></td>
  400. <td><input type="text" name="config_image_compare_width" value="<?php echo $config_image_compare_width; ?>" size="3" />
  401. x
  402. <input type="text" name="config_image_compare_height" value="<?php echo $config_image_compare_height; ?>" size="3" />
  403. <?php if ($error_image_compare) { ?>
  404. <span class="error"><?php echo $error_image_compare; ?></span>
  405. <?php } ?></td>
  406. </tr>
  407. <tr>
  408. <td><span class="required">*</span> <?php echo $entry_image_wishlist; ?></td>
  409. <td><input type="text" name="config_image_wishlist_width" value="<?php echo $config_image_wishlist_width; ?>" size="3" />
  410. x
  411. <input type="text" name="config_image_wishlist_height" value="<?php echo $config_image_wishlist_height; ?>" size="3" />
  412. <?php if ($error_image_wishlist) { ?>
  413. <span class="error"><?php echo $error_image_wishlist; ?></span>
  414. <?php } ?></td>
  415. </tr>
  416. <tr>
  417. <td><span class="required">*</span> <?php echo $entry_image_cart; ?></td>
  418. <td><input type="text" name="config_image_cart_width" value="<?php echo $config_image_cart_width; ?>" size="3" />
  419. x
  420. <input type="text" name="config_image_cart_height" value="<?php echo $config_image_cart_height; ?>" size="3" />
  421. <?php if ($error_image_cart) { ?>
  422. <span class="error"><?php echo $error_image_cart; ?></span>
  423. <?php } ?></td>
  424. </tr>
  425. </table>
  426. </div>
  427. <div id="tab-server">
  428. <table class="form">
  429. <tr>
  430. <td><?php echo $entry_use_ssl; ?></td>
  431. <td><?php if ($config_use_ssl) { ?>
  432. <input type="radio" name="config_use_ssl" value="1" checked="checked" />
  433. <?php echo $text_yes; ?>
  434. <input type="radio" name="config_use_ssl" value="0" />
  435. <?php echo $text_no; ?>
  436. <?php } else { ?>
  437. <input type="radio" name="config_use_ssl" value="1" />
  438. <?php echo $text_yes; ?>
  439. <input type="radio" name="config_use_ssl" value="0" checked="checked" />
  440. <?php echo $text_no; ?>
  441. <?php } ?></td>
  442. </tr>
  443. </table>
  444. </div>
  445. </form>
  446. </div>
  447. </div>
  448. </div>
  449. <script type="text/javascript"><!--
  450. $('#template').load('index.php?route=setting/store/template&token=<?php echo $token; ?>&template=' + encodeURIComponent($('select[name=\'config_template\']').attr('value')));
  451. $('select[name=\'config_zone_id\']').load('index.php?route=setting/store/zone&token=<?php echo $token; ?>&country_id=<?php echo $config_country_id; ?>&zone_id=<?php echo $config_zone_id; ?>');
  452. //--></script>
  453. <script type="text/javascript"><!--
  454. function image_upload(field, preview) {
  455. $('#dialog').remove();
  456. $('#content').prepend('<div id="dialog" style="padding: 3px 0px 0px 0px;"><iframe src="index.php?route=common/filemanager&token=<?php echo $token; ?>&field=' + encodeURIComponent(field) + '" style="padding:0; margin: 0; display: block; width: 100%; height: 100%;" frameborder="no" scrolling="auto"></iframe></div>');
  457. $('#dialog').dialog({
  458. title: '<?php echo $text_image_manager; ?>',
  459. close: function (event, ui) {
  460. if ($('#' + field).attr('value')) {
  461. $.ajax({
  462. url: 'index.php?route=common/filemanager/image&token=<?php echo $token; ?>',
  463. type: 'POST',
  464. data: 'image=' + encodeURIComponent($('#' + field).val()),
  465. dataType: 'text',
  466. success: function(data) {
  467. $('#' + preview).replaceWith('<img src="' + data + '" alt="" id="' + preview + '" class="image" onclick="image_upload(\'' + field + '\', \'' + preview + '\');" />');
  468. }
  469. });
  470. }
  471. },
  472. bgiframe: false,
  473. width: 800,
  474. height: 400,
  475. resizable: false,
  476. modal: false
  477. });
  478. };
  479. //--></script>
  480. <script type="text/javascript"><!--
  481. $('#tabs a').tabs();
  482. //--></script>
  483. <?php echo $footer; ?>