home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 90 / PIWD90.iso / pc / contents / ecommerce / software / osCommerce.exe / oscommerce-2.2ms2 / catalog / privacy.php < prev    next >
PHP Script  |  2003-06-05  |  4KB  |  94 lines

  1. <?php
  2. /*
  3.   $Id: privacy.php,v 1.22 2003/06/05 23:26:23 hpdl Exp $
  4.  
  5.   osCommerce, Open Source E-Commerce Solutions
  6.   http://www.oscommerce.com
  7.  
  8.   Copyright (c) 2003 osCommerce
  9.  
  10.   Released under the GNU General Public License
  11. */
  12.  
  13.   require('includes/application_top.php');
  14.  
  15.   require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRIVACY);
  16.  
  17.   $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_PRIVACY));
  18. ?>
  19. <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
  20. <html <?php echo HTML_PARAMS; ?>>
  21. <head>
  22. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
  23. <title><?php echo TITLE; ?></title>
  24. <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
  25. <link rel="stylesheet" type="text/css" href="stylesheet.css">
  26. </head>
  27. <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
  28. <!-- header //-->
  29. <?php require(DIR_WS_INCLUDES . 'header.php'); ?>
  30. <!-- header_eof //-->
  31.  
  32. <!-- body //-->
  33. <table border="0" width="100%" cellspacing="3" cellpadding="3">
  34.   <tr>
  35.     <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
  36. <!-- left_navigation //-->
  37. <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
  38. <!-- left_navigation_eof //-->
  39.     </table></td>
  40. <!-- body_text //-->
  41.     <td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">
  42.       <tr>
  43.         <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
  44.           <tr>
  45.             <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
  46.             <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_specials.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
  47.           </tr>
  48.         </table></td>
  49.       </tr>
  50.       <tr>
  51.         <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  52.       </tr>
  53.       <tr>
  54.         <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
  55.           <tr>
  56.             <td class="main"><?php echo TEXT_INFORMATION; ?></td>
  57.           </tr>
  58.         </table></td>
  59.       </tr>
  60.       <tr>
  61.         <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  62.       </tr>
  63.       <tr>
  64.         <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
  65.           <tr class="infoBoxContents">
  66.             <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
  67.               <tr>
  68.                 <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
  69.                 <td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>
  70.                 <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
  71.               </tr>
  72.             </table></td>
  73.           </tr>
  74.         </table></td>
  75.       </tr>
  76.     </table></td>
  77. <!-- body_text_eof //-->
  78.     <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
  79. <!-- right_navigation //-->
  80. <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
  81. <!-- right_navigation_eof //-->
  82.     </table></td>
  83.   </tr>
  84. </table>
  85. <!-- body_eof //-->
  86.  
  87. <!-- footer //-->
  88. <?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
  89. <!-- footer_eof //-->
  90. <br>
  91. </body>
  92. </html>
  93. <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
  94.