Text Compare
Produced: 15.06.2012 19:51:35
   
Mode:  All  
Left file: U:\work\PHP Software\shopsoftware\xtc 3.04\xtc_304SP21\xtc_304SP21\xtc_304SP21\304SP2.1_release\xtcommerce\admin\includes\application_top.php  
Right file: U:\work\PHP Software\shopsoftware\xtc 3.04\xtc_304SP21\xtc_304SP21\xtc_304SP21\304SP2.1_release\xtcommerce\admin\includes\application_top_security.php  
<?php = <?php
/* --------------------------------------------------------------   /* --------------------------------------------------------------
   $Id: application_top.php 1323 2005-10-27 17:58:08Z mz $      $Id: application_top.php 1323 2005-10-27 17:58:08Z mz $
     
   XT-Commerce - community made shopping      XT-Commerce - community made shopping
   http://www.xt-commerce.com      http://www.xt-commerce.com
     
   Copyright (c) 2003 XT-Commerce      Copyright (c) 2003 XT-Commerce
   --------------------------------------------------------------      --------------------------------------------------------------
   based on:      based on:
   (c) 2000-2001 The Exchange Project  (earlier name of osCommerce)      (c) 2000-2001 The Exchange Project  (earlier name of osCommerce)
   (c) 2002-2003 osCommerce(application_top.php,v 1.158 2003/03/22); www.oscommerce.com      (c) 2002-2003 osCommerce(application_top.php,v 1.158 2003/03/22); www.oscommerce.com
   (c) 2003         nextcommerce (application_top.php,v 1.46 2003/08/24); www.nextcommerce.org      (c) 2003         nextcommerce (application_top.php,v 1.46 2003/08/24); www.nextcommerce.org
     
   Released under the GNU General Public License      Released under the GNU General Public License
   --------------------------------------------------------------      --------------------------------------------------------------
   Third Party contribution:      Third Party contribution:
     
   Customers Status v3.x  (c) 2002-2003 Copyright Elari elari@free.fr | www.unlockgsm.com/dload-osc/ | CVS : http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/elari/?sortby=date#dirlist      Customers Status v3.x  (c) 2002-2003 Copyright Elari elari@free.fr | www.unlockgsm.com/dload-osc/ | CVS : http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/elari/?sortby=date#dirlist
     
   Credit Class/Gift Vouchers/Discount Coupons (Version 5.10)      Credit Class/Gift Vouchers/Discount Coupons (Version 5.10)
   http://www.oscommerce.com/community/contributions,282      http://www.oscommerce.com/community/contributions,282
   Copyright (c) Strider | Strider@oscworks.com      Copyright (c) Strider | Strider@oscworks.com
   Copyright (c  Nick Stanko of UkiDev.com, nick@ukidev.com      Copyright (c  Nick Stanko of UkiDev.com, nick@ukidev.com
   Copyright (c) Andre ambidex@gmx.net      Copyright (c) Andre ambidex@gmx.net
   Copyright (c) 2001,2002 Ian C Wilson http://www.phesis.org      Copyright (c) 2001,2002 Ian C Wilson http://www.phesis.org
     
   Released under the GNU General Public License      Released under the GNU General Public License
   --------------------------------------------------------------*/      --------------------------------------------------------------*/
     
  // Start the clock for the page parse time log     // Start the clock for the page parse time log
  define('PAGE_PARSE_START_TIME', microtime());     define('PAGE_PARSE_START_TIME', microtime());
     
  // security     // security
  define('_VALID_XTC',true);     define('_VALID_XTC',true);
     
  // Set the level of error reporting     // Set the level of error reporting
  error_reporting(E_ALL & ~E_NOTICE);     error_reporting(E_ALL & ~E_NOTICE);
     
  // Disable use_trans_sid as xtc_href_link() does this manually     // Disable use_trans_sid as xtc_href_link() does this manually
  if (function_exists('ini_set')) {     if (function_exists('ini_set')) {
    ini_set('session.use_trans_sid', 0);       ini_set('session.use_trans_sid', 0);
  }     }
     
  // Set the local configuration parameters - mainly for developers or the main-configure     // Set the local configuration parameters - mainly for developers or the main-configure
  if (file_exists('includes/local/configure.php')) {     if (file_exists('includes/local/configure.php')) {
    include('includes/local/configure.php');       include('includes/local/configure.php');
  } else {     } else {
    require('includes/configure.php');       require('includes/configure.php');
  }     }
     
  define('SQL_CACHEDIR',DIR_FS_CATALOG.'cache/');     define('SQL_CACHEDIR',DIR_FS_CATALOG.'cache/');
     
  // Define the project version     // Define the project version
  define('PROJECT_VERSION', 'xt:Commerce v3.0.4 SP2.1');     define('PROJECT_VERSION', 'xt:Commerce v3.0.4 SP2.1');
     
  // Set the length of the redeem code, the longer the more secure     // Set the length of the redeem code, the longer the more secure
  define('SECURITY_CODE_LENGTH', '6');     define('SECURITY_CODE_LENGTH', '6');
     
  // Used in the "Backup Manager" to compress backups     // Used in the "Backup Manager" to compress backups
  define('LOCAL_EXE_GZIP', '/usr/bin/gzip');     define('LOCAL_EXE_GZIP', '/usr/bin/gzip');
  define('LOCAL_EXE_GUNZIP', '/usr/bin/gunzip');     define('LOCAL_EXE_GUNZIP', '/usr/bin/gunzip');
  define('LOCAL_EXE_ZIP', '/usr/local/bin/zip');     define('LOCAL_EXE_ZIP', '/usr/local/bin/zip');
  define('LOCAL_EXE_UNZIP', '/usr/local/bin/unzip');     define('LOCAL_EXE_UNZIP', '/usr/local/bin/unzip');
     
  // define the filenames used in the project     // define the filenames used in the project
  define('FILENAME_ACCOUNTING', 'accounting.php');     define('FILENAME_ACCOUNTING', 'accounting.php');
  define('FILENAME_BACKUP', 'backup.php');     define('FILENAME_BACKUP', 'backup.php');
  define('FILENAME_BANNER_MANAGER', 'banner_manager.php');     define('FILENAME_BANNER_MANAGER', 'banner_manager.php');
  define('FILENAME_BANNER_STATISTICS', 'banner_statistics.php');     define('FILENAME_BANNER_STATISTICS', 'banner_statistics.php');
  define('FILENAME_CACHE', 'cache.php');     define('FILENAME_CACHE', 'cache.php');
  define('FILENAME_CAMPAIGNS', 'campaigns.php');     define('FILENAME_CAMPAIGNS', 'campaigns.php');
  define('FILENAME_CATALOG_ACCOUNT_HISTORY_INFO', 'account_history_info.php');     define('FILENAME_CATALOG_ACCOUNT_HISTORY_INFO', 'account_history_info.php');
  define('FILENAME_CATALOG_NEWSLETTER', 'newsletter.php');     define('FILENAME_CATALOG_NEWSLETTER', 'newsletter.php');
  define('FILENAME_CATEGORIES', 'categories.php');     define('FILENAME_CATEGORIES', 'categories.php');
  define('FILENAME_CONFIGURATION', 'configuration.php');     define('FILENAME_CONFIGURATION', 'configuration.php');
  define('FILENAME_COUNTRIES', 'countries.php');     define('FILENAME_COUNTRIES', 'countries.php');
  define('FILENAME_CURRENCIES', 'currencies.php');     define('FILENAME_CURRENCIES', 'currencies.php');
  define('FILENAME_CUSTOMERS', 'customers.php');     define('FILENAME_CUSTOMERS', 'customers.php');
  define('FILENAME_CUSTOMERS_STATUS', 'customers_status.php');     define('FILENAME_CUSTOMERS_STATUS', 'customers_status.php');
  define('FILENAME_DEFAULT', 'start.php');     define('FILENAME_DEFAULT', 'start.php');
  define('FILENAME_DEFINE_LANGUAGE', 'define_language.php');     define('FILENAME_DEFINE_LANGUAGE', 'define_language.php');
  define('FILENAME_FORMS', 'forms.php');     define('FILENAME_FORMS', 'forms.php');
  define('FILENAME_FORM_VALUES', 'form_values.php');     define('FILENAME_FORM_VALUES', 'form_values.php');
  define('FILENAME_GEO_ZONES', 'geo_zones.php');     define('FILENAME_GEO_ZONES', 'geo_zones.php');
  define('FILENAME_LANGUAGES', 'languages.php');     define('FILENAME_LANGUAGES', 'languages.php');
  define('FILENAME_MAIL', 'mail.php');     define('FILENAME_MAIL', 'mail.php');
  define('FILENAME_MANUFACTURERS', 'manufacturers.php');     define('FILENAME_MANUFACTURERS', 'manufacturers.php');
  define('FILENAME_MODULES', 'modules.php');     define('FILENAME_MODULES', 'modules.php');
  define('FILENAME_ORDERS', 'orders.php');     define('FILENAME_ORDERS', 'orders.php');
  define('FILENAME_ORDERS_INVOICE', 'invoice.php');     define('FILENAME_ORDERS_INVOICE', 'invoice.php');
  define('FILENAME_ORDERS_PACKINGSLIP', 'packingslip.php');     define('FILENAME_ORDERS_PACKINGSLIP', 'packingslip.php');
  define('FILENAME_ORDERS_STATUS', 'orders_status.php');     define('FILENAME_ORDERS_STATUS', 'orders_status.php');
  define('FILENAME_ORDERS_EDIT', 'orders_edit.php');     define('FILENAME_ORDERS_EDIT', 'orders_edit.php');
  define('FILENAME_POPUP_IMAGE', 'popup_image.php');     define('FILENAME_POPUP_IMAGE', 'popup_image.php');
  define('FILENAME_PRODUCTS_ATTRIBUTES', 'products_attributes.php');     define('FILENAME_PRODUCTS_ATTRIBUTES', 'products_attributes.php');
  define('FILENAME_PRODUCTS_EXPECTED', 'products_expected.php');     define('FILENAME_PRODUCTS_EXPECTED', 'products_expected.php');
  define('FILENAME_REVIEWS', 'reviews.php');     define('FILENAME_REVIEWS', 'reviews.php');
  define('FILENAME_SERVER_INFO', 'server_info.php');     define('FILENAME_SERVER_INFO', 'server_info.php');
  define('FILENAME_SHIPPING_MODULES', 'shipping_modules.php');     define('FILENAME_SHIPPING_MODULES', 'shipping_modules.php');
  define('FILENAME_SPECIALS', 'specials.php');     define('FILENAME_SPECIALS', 'specials.php');
  define('FILENAME_STATS_CUSTOMERS', 'stats_customers.php');     define('FILENAME_STATS_CUSTOMERS', 'stats_customers.php');
  define('FILENAME_STATS_PRODUCTS_PURCHASED', 'stats_products_purchased.php');     define('FILENAME_STATS_PRODUCTS_PURCHASED', 'stats_products_purchased.php');
  define('FILENAME_STATS_PRODUCTS_VIEWED', 'stats_products_viewed.php');     define('FILENAME_STATS_PRODUCTS_VIEWED', 'stats_products_viewed.php');
  define('FILENAME_TAX_CLASSES', 'tax_classes.php');     define('FILENAME_TAX_CLASSES', 'tax_classes.php');
  define('FILENAME_TAX_RATES', 'tax_rates.php');     define('FILENAME_TAX_RATES', 'tax_rates.php');
  define('FILENAME_WHOS_ONLINE', 'whos_online.php');     define('FILENAME_WHOS_ONLINE', 'whos_online.php');
  define('FILENAME_ZONES', 'zones.php');     define('FILENAME_ZONES', 'zones.php');
  define('FILENAME_START', 'start.php');     define('FILENAME_START', 'start.php');
  define('FILENAME_STATS_STOCK_WARNING', 'stats_stock_warning.php');     define('FILENAME_STATS_STOCK_WARNING', 'stats_stock_warning.php');
  define('FILENAME_TPL_BOXES','templates_boxes.php');     define('FILENAME_TPL_BOXES','templates_boxes.php');
  define('FILENAME_TPL_MODULES','templates_modules.php');     define('FILENAME_TPL_MODULES','templates_modules.php');
  define('FILENAME_NEW_ATTRIBUTES','new_attributes.php');     define('FILENAME_NEW_ATTRIBUTES','new_attributes.php');
  define('FILENAME_LOGOUT','../logoff.php');     define('FILENAME_LOGOUT','../logoff.php');
  define('FILENAME_LOGIN','../login.php');     define('FILENAME_LOGIN','../login.php');
  define('FILENAME_CREATE_ACCOUNT','create_account.php');     define('FILENAME_CREATE_ACCOUNT','create_account.php');
  define('FILENAME_CREATE_ACCOUNT_SUCCESS','create_account_success.php');     define('FILENAME_CREATE_ACCOUNT_SUCCESS','create_account_success.php');
  define('FILENAME_CUSTOMER_MEMO','customer_memo.php');     define('FILENAME_CUSTOMER_MEMO','customer_memo.php');
  define('FILENAME_CONTENT_MANAGER','content_manager.php');     define('FILENAME_CONTENT_MANAGER','content_manager.php');
  define('FILENAME_CONTENT_PREVIEW','content_preview.php');     define('FILENAME_CONTENT_PREVIEW','content_preview.php');
  define('FILENAME_SECURITY_CHECK','security_check.php');     define('FILENAME_SECURITY_CHECK','security_check.php');
  define('FILENAME_PRINT_ORDER','print_order.php');     define('FILENAME_PRINT_ORDER','print_order.php');
  define('FILENAME_CREDITS','credits.php');     define('FILENAME_CREDITS','credits.php');
  define('FILENAME_PRINT_PACKINGSLIP','print_packingslip.php');     define('FILENAME_PRINT_PACKINGSLIP','print_packingslip.php');
  define('FILENAME_MODULE_NEWSLETTER','module_newsletter.php');     define('FILENAME_MODULE_NEWSLETTER','module_newsletter.php');
  define('FILENAME_GV_QUEUE', 'gv_queue.php');     define('FILENAME_GV_QUEUE', 'gv_queue.php');
  define('FILENAME_GV_MAIL', 'gv_mail.php');     define('FILENAME_GV_MAIL', 'gv_mail.php');
  define('FILENAME_GV_SENT', 'gv_sent.php');     define('FILENAME_GV_SENT', 'gv_sent.php');
  define('FILENAME_COUPON_ADMIN', 'coupon_admin.php');     define('FILENAME_COUPON_ADMIN', 'coupon_admin.php');
  define('FILENAME_POPUP_MEMO', 'popup_memo.php');     define('FILENAME_POPUP_MEMO', 'popup_memo.php');
  define('FILENAME_SHIPPING_STATUS', 'shipping_status.php');     define('FILENAME_SHIPPING_STATUS', 'shipping_status.php');
  define('FILENAME_SALES_REPORT','stats_sales_report.php');     define('FILENAME_SALES_REPORT','stats_sales_report.php');
  define('FILENAME_MODULE_EXPORT','module_export.php');     define('FILENAME_MODULE_EXPORT','module_export.php');
  define('FILENAME_EASY_POPULATE','easypopulate.php');     define('FILENAME_EASY_POPULATE','easypopulate.php');
  define('FILENAME_BLACKLIST', 'blacklist.php');     define('FILENAME_BLACKLIST', 'blacklist.php');
  define('FILENAME_PRODUCTS_VPE','products_vpe.php');     define('FILENAME_PRODUCTS_VPE','products_vpe.php');
  define('FILENAME_CAMPAIGNS_REPORT','stats_campaigns.php');     define('FILENAME_CAMPAIGNS_REPORT','stats_campaigns.php');
  define('FILENAME_XSELL_GROUPS','cross_sell_groups.php');     define('FILENAME_XSELL_GROUPS','cross_sell_groups.php');
     
  // define the database table names used in the project     // define the database table names used in the project
  define('TABLE_ADDRESS_BOOK', 'address_book');     define('TABLE_ADDRESS_BOOK', 'address_book');
  define('TABLE_ADDRESS_FORMAT', 'address_format');     define('TABLE_ADDRESS_FORMAT', 'address_format');
  define('TABLE_ADMIN_ACCESS', 'admin_access');     define('TABLE_ADMIN_ACCESS', 'admin_access');
  define('TABLE_BANNERS', 'banners');     define('TABLE_BANNERS', 'banners');
  define('TABLE_BANNERS_HISTORY', 'banners_history');     define('TABLE_BANNERS_HISTORY', 'banners_history');
  define('TABLE_CAMPAIGNS', 'campaigns');     define('TABLE_CAMPAIGNS', 'campaigns');
  define('TABLE_CATEGORIES', 'categories');     define('TABLE_CATEGORIES', 'categories');
  define('TABLE_CATEGORIES_DESCRIPTION', 'categories_description');     define('TABLE_CATEGORIES_DESCRIPTION', 'categories_description');
  define('TABLE_CONFIGURATION', 'configuration');     define('TABLE_CONFIGURATION', 'configuration');
  define('TABLE_CONFIGURATION_GROUP', 'configuration_group');     define('TABLE_CONFIGURATION_GROUP', 'configuration_group');
  define('TABLE_TPL_MODULES_CONFIGURATION', 'tpl_modules_configuration ');     define('TABLE_TPL_MODULES_CONFIGURATION', 'tpl_modules_configuration ');
  define('TABLE_COUNTRIES', 'countries');     define('TABLE_COUNTRIES', 'countries');
  define('TABLE_CURRENCIES', 'currencies');     define('TABLE_CURRENCIES', 'currencies');
  define('TABLE_CUSTOMERS', 'customers');     define('TABLE_CUSTOMERS', 'customers');
  define('TABLE_CUSTOMERS_BASKET', 'customers_basket');     define('TABLE_CUSTOMERS_BASKET', 'customers_basket');
  define('TABLE_CUSTOMERS_BASKET_ATTRIBUTES', 'customers_basket_attributes');     define('TABLE_CUSTOMERS_BASKET_ATTRIBUTES', 'customers_basket_attributes');
  define('TABLE_CUSTOMERS_INFO', 'customers_info');     define('TABLE_CUSTOMERS_INFO', 'customers_info');
  define('TABLE_CUSTOMERS_IP', 'customers_ip');     define('TABLE_CUSTOMERS_IP', 'customers_ip');
  define('TABLE_CUSTOMERS_STATUS', 'customers_status');     define('TABLE_CUSTOMERS_STATUS', 'customers_status');
  define('TABLE_CUSTOMERS_STATUS_HISTORY', 'customers_status_history');     define('TABLE_CUSTOMERS_STATUS_HISTORY', 'customers_status_history');
  define('TABLE_FORMS', 'forms');     define('TABLE_FORMS', 'forms');
  define('TABLE_LANGUAGES', 'languages');     define('TABLE_LANGUAGES', 'languages');
  define('TABLE_MANUFACTURERS', 'manufacturers');     define('TABLE_MANUFACTURERS', 'manufacturers');
  define('TABLE_MANUFACTURERS_INFO', 'manufacturers_info');     define('TABLE_MANUFACTURERS_INFO', 'manufacturers_info');
  define('TABLE_NEWSLETTERS', 'newsletters');     define('TABLE_NEWSLETTERS', 'newsletters');
  define('TABLE_NEWSLETTERS_HISTORY', 'newsletters_history');     define('TABLE_NEWSLETTERS_HISTORY', 'newsletters_history');
  define('TABLE_NEWSLETTER_RECIPIENTS', 'newsletter_recipients');     define('TABLE_NEWSLETTER_RECIPIENTS', 'newsletter_recipients');
  define('TABLE_ORDERS', 'orders');     define('TABLE_ORDERS', 'orders');
  define('TABLE_ORDERS_PRODUCTS', 'orders_products');     define('TABLE_ORDERS_PRODUCTS', 'orders_products');
  define('TABLE_ORDERS_PRODUCTS_ATTRIBUTES', 'orders_products_attributes');     define('TABLE_ORDERS_PRODUCTS_ATTRIBUTES', 'orders_products_attributes');
  define('TABLE_ORDERS_PRODUCTS_DOWNLOAD', 'orders_products_download');     define('TABLE_ORDERS_PRODUCTS_DOWNLOAD', 'orders_products_download');
  define('TABLE_ORDERS_STATUS', 'orders_status');     define('TABLE_ORDERS_STATUS', 'orders_status');
  define('TABLE_ORDERS_STATUS_HISTORY', 'orders_status_history');     define('TABLE_ORDERS_STATUS_HISTORY', 'orders_status_history');
  define('TABLE_ORDERS_TOTAL', 'orders_total');     define('TABLE_ORDERS_TOTAL', 'orders_total');
  define('TABLE_ORDERS_RECALCULATE', 'orders_recalculate');     define('TABLE_ORDERS_RECALCULATE', 'orders_recalculate');
  define('TABLE_PERSONAL_OFFERS_BY','personal_offers_by_customers_status_');     define('TABLE_PERSONAL_OFFERS_BY','personal_offers_by_customers_status_');
  define('TABLE_PRODUCTS', 'products');     define('TABLE_PRODUCTS', 'products');
  define('TABLE_PRODUCTS_ATTRIBUTES', 'products_attributes');     define('TABLE_PRODUCTS_ATTRIBUTES', 'products_attributes');
  define('TABLE_PRODUCTS_ATTRIBUTES_DOWNLOAD', 'products_attributes_download');     define('TABLE_PRODUCTS_ATTRIBUTES_DOWNLOAD', 'products_attributes_download');
  define('TABLE_PRODUCTS_CONTENT','products_content');     define('TABLE_PRODUCTS_CONTENT','products_content');
  define('TABLE_PRODUCTS_DESCRIPTION', 'products_description');     define('TABLE_PRODUCTS_DESCRIPTION', 'products_description');
  define('TABLE_PRODUCTS_NOTIFICATIONS', 'products_notifications');     define('TABLE_PRODUCTS_NOTIFICATIONS', 'products_notifications');
  define('TABLE_PRODUCTS_IMAGES', 'products_images');     define('TABLE_PRODUCTS_IMAGES', 'products_images');
  define('TABLE_PRODUCTS_OPTIONS', 'products_options');     define('TABLE_PRODUCTS_OPTIONS', 'products_options');
  define('TABLE_PRODUCTS_OPTIONS_VALUES', 'products_options_values');     define('TABLE_PRODUCTS_OPTIONS_VALUES', 'products_options_values');
  define('TABLE_PRODUCTS_OPTIONS_VALUES_TO_PRODUCTS_OPTIONS', 'products_options_values_to_products_options');     define('TABLE_PRODUCTS_OPTIONS_VALUES_TO_PRODUCTS_OPTIONS', 'products_options_values_to_products_options');
  define('TABLE_PRODUCTS_TO_CATEGORIES', 'products_to_categories');     define('TABLE_PRODUCTS_TO_CATEGORIES', 'products_to_categories');
  define('TABLE_PRODUCTS_VPE','products_vpe');     define('TABLE_PRODUCTS_VPE','products_vpe');
  define('TABLE_PRODUCTS_XSELL','products_xsell');     define('TABLE_PRODUCTS_XSELL','products_xsell');
  define('TABLE_PRODUCTS_XSELL_GROUPS','products_xsell_grp_name');     define('TABLE_PRODUCTS_XSELL_GROUPS','products_xsell_grp_name');
  define('TABLE_REVIEWS', 'reviews');     define('TABLE_REVIEWS', 'reviews');
  define('TABLE_REVIEWS_DESCRIPTION', 'reviews_description');     define('TABLE_REVIEWS_DESCRIPTION', 'reviews_description');
  define('TABLE_SESSIONS', 'sessions');     define('TABLE_SESSIONS', 'sessions');
  define('TABLE_SPECIALS', 'specials');     define('TABLE_SPECIALS', 'specials');
  define('TABLE_TAX_CLASS', 'tax_class');     define('TABLE_TAX_CLASS', 'tax_class');
  define('TABLE_TAX_RATES', 'tax_rates');     define('TABLE_TAX_RATES', 'tax_rates');
  define('TABLE_TPL_MODULES_CONFIGURATION', 'tpl_modules_configuration');     define('TABLE_TPL_MODULES_CONFIGURATION', 'tpl_modules_configuration');
  define('TABLE_GEO_ZONES', 'geo_zones');     define('TABLE_GEO_ZONES', 'geo_zones');
  define('TABLE_ZONES_TO_GEO_ZONES', 'zones_to_geo_zones');     define('TABLE_ZONES_TO_GEO_ZONES', 'zones_to_geo_zones');
  define('TABLE_WHOS_ONLINE', 'whos_online');     define('TABLE_WHOS_ONLINE', 'whos_online');
  define('TABLE_ZONES', 'zones');     define('TABLE_ZONES', 'zones');
  define('TABLE_BOX_ALIGN','box_align');     define('TABLE_BOX_ALIGN','box_align');
  define('TABLE_CUSTOMERS_MEMO','customers_memo');     define('TABLE_CUSTOMERS_MEMO','customers_memo');
  define('TABLE_CONTENT_MANAGER','content_manager');     define('TABLE_CONTENT_MANAGER','content_manager');
  define('TABLE_MEDIA_CONTENT','media_content');     define('TABLE_MEDIA_CONTENT','media_content');
  define('TABLE_MODULE_NEWSLETTER','module_newsletter');     define('TABLE_MODULE_NEWSLETTER','module_newsletter');
  define('TABLE_CM_FILE_FLAGS', 'cm_file_flags');     define('TABLE_CM_FILE_FLAGS', 'cm_file_flags');
  define('TABLE_COUPON_GV_QUEUE', 'coupon_gv_queue');     define('TABLE_COUPON_GV_QUEUE', 'coupon_gv_queue');
  define('TABLE_COUPON_GV_CUSTOMER', 'coupon_gv_customer');     define('TABLE_COUPON_GV_CUSTOMER', 'coupon_gv_customer');
  define('TABLE_COUPON_EMAIL_TRACK', 'coupon_email_track');     define('TABLE_COUPON_EMAIL_TRACK', 'coupon_email_track');
  define('TABLE_COUPON_REDEEM_TRACK', 'coupon_redeem_track');     define('TABLE_COUPON_REDEEM_TRACK', 'coupon_redeem_track');
  define('TABLE_COUPONS', 'coupons');     define('TABLE_COUPONS', 'coupons');
  define('TABLE_COUPONS_DESCRIPTION', 'coupons_description');     define('TABLE_COUPONS_DESCRIPTION', 'coupons_description');
  define('TABLE_SERVER_TRACKING', 'server_tracking');     define('TABLE_SERVER_TRACKING', 'server_tracking');
  define('TABLE_SHIPPING_STATUS', 'shipping_status');     define('TABLE_SHIPPING_STATUS', 'shipping_status');
  define('TABLE_BLACKLIST', 'card_blacklist');     define('TABLE_BLACKLIST', 'card_blacklist');
  define('TABLE_CAMPAIGNS_IP','campaigns_ip');     define('TABLE_CAMPAIGNS_IP','campaigns_ip');
     
 
  // include needed functions     // include needed functions
  require_once(DIR_FS_INC . 'xtc_db_connect.inc.php');     require_once(DIR_FS_INC . 'xtc_db_connect.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_close.inc.php');     require_once(DIR_FS_INC . 'xtc_db_close.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_error.inc.php');     require_once(DIR_FS_INC . 'xtc_db_error.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_query.inc.php');     require_once(DIR_FS_INC . 'xtc_db_query.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_queryCached.inc.php');     require_once(DIR_FS_INC . 'xtc_db_queryCached.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_perform.inc.php');     require_once(DIR_FS_INC . 'xtc_db_perform.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_fetch_array.inc.php');     require_once(DIR_FS_INC . 'xtc_db_fetch_array.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_num_rows.inc.php');     require_once(DIR_FS_INC . 'xtc_db_num_rows.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_data_seek.inc.php');     require_once(DIR_FS_INC . 'xtc_db_data_seek.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_insert_id.inc.php');     require_once(DIR_FS_INC . 'xtc_db_insert_id.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_free_result.inc.php');     require_once(DIR_FS_INC . 'xtc_db_free_result.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_fetch_fields.inc.php');     require_once(DIR_FS_INC . 'xtc_db_fetch_fields.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_output.inc.php');     require_once(DIR_FS_INC . 'xtc_db_output.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_input.inc.php');     require_once(DIR_FS_INC . 'xtc_db_input.inc.php');
  require_once(DIR_FS_INC . 'xtc_db_prepare_input.inc.php');     require_once(DIR_FS_INC . 'xtc_db_prepare_input.inc.php');
  require_once(DIR_FS_INC . 'xtc_get_ip_address.inc.php');     require_once(DIR_FS_INC . 'xtc_get_ip_address.inc.php');
  require_once(DIR_FS_INC . 'xtc_setcookie.inc.php');     require_once(DIR_FS_INC . 'xtc_setcookie.inc.php');
  require_once(DIR_FS_INC . 'xtc_validate_email.inc.php');     require_once(DIR_FS_INC . 'xtc_validate_email.inc.php');
  require_once(DIR_FS_INC . 'xtc_not_null.inc.php');     require_once(DIR_FS_INC . 'xtc_not_null.inc.php');
  require_once(DIR_FS_INC . 'xtc_add_tax.inc.php');     require_once(DIR_FS_INC . 'xtc_add_tax.inc.php');
  require_once(DIR_FS_INC . 'xtc_get_tax_rate.inc.php');     require_once(DIR_FS_INC . 'xtc_get_tax_rate.inc.php');
  require_once(DIR_FS_INC . 'xtc_get_qty.inc.php');     require_once(DIR_FS_INC . 'xtc_get_qty.inc.php');
  require_once(DIR_FS_INC . 'xtc_product_link.inc.php');     require_once(DIR_FS_INC . 'xtc_product_link.inc.php');
  require_once(DIR_FS_INC . 'xtc_cleanName.inc.php');     require_once(DIR_FS_INC . 'xtc_cleanName.inc.php');
     
     
  // customization for the design layout     // customization for the design layout
  define('BOX_WIDTH', 125); // how wide the boxes should be in pixels (default: 125)     define('BOX_WIDTH', 125); // how wide the boxes should be in pixels (default: 125)
     
  // Define how do we update currency exchange rates     // Define how do we update currency exchange rates
  // Possible values are 'oanda' 'xe' or ''     // Possible values are 'oanda' 'xe' or ''
  define('CURRENCY_SERVER_PRIMARY', 'oanda');     define('CURRENCY_SERVER_PRIMARY', 'oanda');
  define('CURRENCY_SERVER_BACKUP', 'xe');     define('CURRENCY_SERVER_BACKUP', 'xe');
     
  // Use the DB-Logger     // Use the DB-Logger
  define('STORE_DB_TRANSACTIONS', 'false');     define('STORE_DB_TRANSACTIONS', 'false');
     
  // include the database functions     // include the database functions
//  require(DIR_WS_FUNCTIONS . 'database.php');   //  require(DIR_WS_FUNCTIONS . 'database.php');
     
  // make a connection to the database... now     // make a connection to the database... now
  xtc_db_connect() or die('Unable to connect to database server!');     xtc_db_connect() or die('Unable to connect to database server!');
     
  // set application wide parameters     // set application wide parameters
  $configuration_query = xtc_db_query('select configuration_key as cfgKey, configuration_value as cfgValue from ' . TABLE_CONFIGURATION . '');     $configuration_query = xtc_db_query('select configuration_key as cfgKey, configuration_value as cfgValue from ' . TABLE_CONFIGURATION . '');
  while ($configuration = xtc_db_fetch_array($configuration_query)) {     while ($configuration = xtc_db_fetch_array($configuration_query)) {
    define($configuration['cfgKey'], $configuration['cfgValue']);       define($configuration['cfgKey'], $configuration['cfgValue']);
  }     }
     
  define('FILENAME_IMAGEMANIPULATOR',IMAGE_MANIPULATOR);     define('FILENAME_IMAGEMANIPULATOR',IMAGE_MANIPULATOR);
    function xtDBquery($query) {       function xtDBquery($query) {
       if (DB_CACHE=='true') {          if (DB_CACHE=='true') {
             $result=xtc_db_queryCached($query);                $result=xtc_db_queryCached($query);
             //echo 'cached query: '.$query.'<br>';                //echo 'cached query: '.$query.'<br>';
          } else {             } else {
             $result=xtc_db_query($query);                $result=xtc_db_query($query);
    }       }
    return $result;       return $result;
  }     }
     
     
  // initialize the logger class     // initialize the logger class
  require(DIR_WS_CLASSES . 'logger.php');     require(DIR_WS_CLASSES . 'logger.php');
     
  // include shopping cart class     // include shopping cart class
  require(DIR_WS_CLASSES . 'shopping_cart.php');     require(DIR_WS_CLASSES . 'shopping_cart.php');
     
  // some code to solve compatibility issues     // some code to solve compatibility issues
  require(DIR_WS_FUNCTIONS . 'compatibility.php');     require(DIR_WS_FUNCTIONS . 'compatibility.php');
     
  require(DIR_WS_FUNCTIONS . 'general.php');     require(DIR_WS_FUNCTIONS . 'general.php');
     
     
  // define how the session functions will be used     // define how the session functions will be used
  require(DIR_WS_FUNCTIONS . 'sessions.php');     require(DIR_WS_FUNCTIONS . 'sessions.php');
     
    // define our general functions used application-wide       // define our general functions used application-wide
  require(DIR_WS_FUNCTIONS . 'html_output.php');     require(DIR_WS_FUNCTIONS . 'html_output.php');
     
  // set the session name and save path     // set the session name and save path
  session_name('XTCsid');     session_name('XTCsid');
        if (STORE_SESSIONS != 'mysql') session_save_path(SESSION_WRITE_DIRECTORY);           if (STORE_SESSIONS != 'mysql') session_save_path(SESSION_WRITE_DIRECTORY);
     
  // set the session cookie parameters     // set the session cookie parameters
  if (function_exists('session_set_cookie_params')) {     if (function_exists('session_set_cookie_params')) {
    session_set_cookie_params(0, '/', (xtc_not_null($current_domain) ? '.' . $current_domain : ''));       session_set_cookie_params(0, '/', (xtc_not_null($current_domain) ? '.' . $current_domain : ''));
  } elseif (function_exists('ini_set')) {     } elseif (function_exists('ini_set')) {
    ini_set('session.cookie_lifetime', '0');       ini_set('session.cookie_lifetime', '0');
    ini_set('session.cookie_path', '/');       ini_set('session.cookie_path', '/');
    ini_set('session.cookie_domain', (xtc_not_null($current_domain) ? '.' . $current_domain : ''));       ini_set('session.cookie_domain', (xtc_not_null($current_domain) ? '.' . $current_domain : ''));
  }     }
     
  // set the session ID if it exists     // set the session ID if it exists
  if (isset($_POST[session_name()])) {     if (isset($_POST[session_name()])) {
    session_id($_POST[session_name()]);       session_id($_POST[session_name()]);
  } elseif ( ($request_type == 'SSL') && isset($_GET[session_name()]) ) {     } elseif ( ($request_type == 'SSL') && isset($_GET[session_name()]) ) {
    session_id($_GET[session_name()]);       session_id($_GET[session_name()]);
  }     }
     
  // start the session     // start the session
  $session_started = false;     $session_started = false;
  if (SESSION_FORCE_COOKIE_USE == 'True') {     if (SESSION_FORCE_COOKIE_USE == 'True') {
    xtc_setcookie('cookie_test', 'please_accept_for_session', time()+60*60*24*30, '/', $current_domain);       xtc_setcookie('cookie_test', 'please_accept_for_session', time()+60*60*24*30, '/', $current_domain);
     
    if (isset($HTTP_COOKIE_VARS['cookie_test'])) {       if (isset($HTTP_COOKIE_VARS['cookie_test'])) {
      session_start();         session_start();
      $session_started = true;         $session_started = true;
    }       }
  } elseif (CHECK_CLIENT_AGENT == 'True') {     } elseif (CHECK_CLIENT_AGENT == 'True') {
    $user_agent = strtolower(getenv('HTTP_USER_AGENT'));       $user_agent = strtolower(getenv('HTTP_USER_AGENT'));
    $spider_flag = false;       $spider_flag = false;
     
    if ($spider_flag == false) {       if ($spider_flag == false) {
      session_start();         session_start();
      $session_started = true;         $session_started = true;
    }       }
  } else {     } else {
    session_start();       session_start();
    $session_started = true;       $session_started = true;
  }     }
     
  // verify the ssl_session_id if the feature is enabled     // verify the ssl_session_id if the feature is enabled
  if ( ($request_type == 'SSL') && (SESSION_CHECK_SSL_SESSION_ID == 'True') && (ENABLE_SSL == true) && ($session_started == true) ) {     if ( ($request_type == 'SSL') && (SESSION_CHECK_SSL_SESSION_ID == 'True') && (ENABLE_SSL == true) && ($session_started == true) ) {
    $ssl_session_id = getenv('SSL_SESSION_ID');       $ssl_session_id = getenv('SSL_SESSION_ID');
    if (!session_is_registered('SSL_SESSION_ID')) {       if (!session_is_registered('SSL_SESSION_ID')) {
      $_SESSION['SESSION_SSL_ID'] = $ssl_session_id;         $_SESSION['SESSION_SSL_ID'] = $ssl_session_id;
    }       }
     
    if ($_SESSION['SESSION_SSL_ID'] != $ssl_session_id) {       if ($_SESSION['SESSION_SSL_ID'] != $ssl_session_id) {
      session_destroy();         session_destroy();
      xtc_redirect(xtc_href_link(FILENAME_SSL_CHECK));         xtc_redirect(xtc_href_link(FILENAME_SSL_CHECK));
    }       }
  }     }
     
  // verify the browser user agent if the feature is enabled     // verify the browser user agent if the feature is enabled
if (SESSION_CHECK_USER_AGENT == 'True') {   if (SESSION_CHECK_USER_AGENT == 'True') {
        $http_user_agent = strtolower($_SERVER['HTTP_USER_AGENT']);           $http_user_agent = strtolower($_SERVER['HTTP_USER_AGENT']);
        $http_user_agent2 = strtolower(getenv("HTTP_USER_AGENT"));           $http_user_agent2 = strtolower(getenv("HTTP_USER_AGENT"));
        $http_user_agent = ($http_user_agent == $http_user_agent2) ? $http_user_agent : $http_user_agent.';'.$http_user_agent2;           $http_user_agent = ($http_user_agent == $http_user_agent2) ? $http_user_agent : $http_user_agent.';'.$http_user_agent2;
        if (!isset($_SESSION['SESSION_USER_AGENT'])) {           if (!isset($_SESSION['SESSION_USER_AGENT'])) {
                $_SESSION['SESSION_USER_AGENT'] = $http_user_agent;                   $_SESSION['SESSION_USER_AGENT'] = $http_user_agent;
        }           }
     
        if ($_SESSION['SESSION_USER_AGENT'] != $http_user_agent) {           if ($_SESSION['SESSION_USER_AGENT'] != $http_user_agent) {
                session_destroy();                   session_destroy();
                xtc_redirect(xtc_href_link(FILENAME_LOGIN));                   xtc_redirect(xtc_href_link(FILENAME_LOGIN));
        }           }
}   }
     
     
  // verify the IP address if the feature is enabled     // verify the IP address if the feature is enabled
  if (SESSION_CHECK_IP_ADDRESS == 'True') {     if (SESSION_CHECK_IP_ADDRESS == 'True') {
    $ip_address = xtc_get_ip_address();       $ip_address = xtc_get_ip_address();
    if (!xtc_session_is_registered('SESSION_IP_ADDRESS')) {       if (!xtc_session_is_registered('SESSION_IP_ADDRESS')) {
      $_SESSION['SESSION_IP_ADDRESS'] = $ip_address;         $_SESSION['SESSION_IP_ADDRESS'] = $ip_address;
    }       }
     
    if ($_SESSION['SESSION_IP_ADDRESS'] != $ip_address) {       if ($_SESSION['SESSION_IP_ADDRESS'] != $ip_address) {
      session_destroy();         session_destroy();
      xtc_redirect(xtc_href_link(FILENAME_LOGIN));         xtc_redirect(xtc_href_link(FILENAME_LOGIN));
    }       }
  }     }
     
  // set the language     // set the language
  if (!isset($_SESSION['language']) || isset($_GET['language'])) {     if (!isset($_SESSION['language']) || isset($_GET['language'])) {
     
    include(DIR_WS_CLASSES . 'language.php');       include(DIR_WS_CLASSES . 'language.php');
    $lng = new language($_GET['language']);       $lng = new language($_GET['language']);
     
    if (!isset($_GET['language'])) $lng->get_browser_language();       if (!isset($_GET['language'])) $lng->get_browser_language();
     
    $_SESSION['language'] = $lng->language['directory'];       $_SESSION['language'] = $lng->language['directory'];
    $_SESSION['languages_id'] = $lng->language['id'];       $_SESSION['languages_id'] = $lng->language['id'];
  }     }
     
  // include the language translations     // include the language translations
  require(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/'.$_SESSION['language'] . '.php');     require(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/'.$_SESSION['language'] . '.php');
  require(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/buttons.php');     require(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/buttons.php');
  $current_page = split('\?', basename($_SERVER['PHP_SELF'])); $current_page = $current_page[0]; // for BadBlue(Win32) webserver compatibility <>   $current_page = explode('?', basename($_SERVER['PHP_SELF'])); $current_page = $current_page[0]; // for BadBlue(Win32) webserver compatibility
  if (file_exists(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/'.$current_page)) { =   if (file_exists(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/'.$current_page)) {
    include(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/'.  $current_page);       include(DIR_FS_LANGUAGES . $_SESSION['language'] . '/admin/'.  $current_page);
  }     }
     
  // write customers status in session     // write customers status in session
  require('../' . DIR_WS_INCLUDES . 'write_customers_status.php');     require('../' . DIR_WS_INCLUDES . 'write_customers_status.php');
     
  -+   if(file_exists($current_page) == false || $_SESSION['customers_status']['customers_status_id'] !== '0') {
        xtc_redirect(xtc_href_link(FILENAME_LOGIN));
      }
  =  
  // for tracking of customers     // for tracking of customers
  $_SESSION['user_info'] = array();     $_SESSION['user_info'] = array();
  if (!$_SESSION['user_info']['user_ip']) {     if (!$_SESSION['user_info']['user_ip']) {
    $_SESSION['user_info']['user_ip'] = $_SERVER['REMOTE_ADDR'];       $_SESSION['user_info']['user_ip'] = $_SERVER['REMOTE_ADDR'];
//    $user_info['user_ip_date'] =  value will be in fact added when login ;   //    $user_info['user_ip_date'] =  value will be in fact added when login ;
    $_SESSION['user_info']['user_host'] = gethostbyaddr( $_SERVER['REMOTE_ADDR'] );;       $_SESSION['user_info']['user_host'] = gethostbyaddr( $_SERVER['REMOTE_ADDR'] );;
    $_SESSION['user_info']['advertiser'] = $_GET['ad'];       $_SESSION['user_info']['advertiser'] = $_GET['ad'];
    $_SESSION['user_info']['referer_url'] = $_SERVER['HTTP_REFERER'];       $_SESSION['user_info']['referer_url'] = $_SERVER['HTTP_REFERER'];
  }     }
     
     
  // define our localization functions     // define our localization functions
  require(DIR_WS_FUNCTIONS . 'localization.php');     require(DIR_WS_FUNCTIONS . 'localization.php');
     
  // Include validation functions (right now only email address)     // Include validation functions (right now only email address)
  //require(DIR_WS_FUNCTIONS . 'validations.php');     //require(DIR_WS_FUNCTIONS . 'validations.php');
     
  // setup our boxes     // setup our boxes
  require(DIR_WS_CLASSES . 'table_block.php');     require(DIR_WS_CLASSES . 'table_block.php');
  require(DIR_WS_CLASSES . 'box.php');     require(DIR_WS_CLASSES . 'box.php');
     
  // initialize the message stack for output messages     // initialize the message stack for output messages
  require(DIR_WS_CLASSES . 'message_stack.php');     require(DIR_WS_CLASSES . 'message_stack.php');
  $messageStack = new messageStack;     $messageStack = new messageStack;
     
  // split-page-results     // split-page-results
  require(DIR_WS_CLASSES . 'split_page_results.php');     require(DIR_WS_CLASSES . 'split_page_results.php');
     
  // entry/item info classes     // entry/item info classes
  require(DIR_WS_CLASSES . 'object_info.php');     require(DIR_WS_CLASSES . 'object_info.php');
     
     
  // file uploading class     // file uploading class
  require(DIR_WS_CLASSES . 'upload.php');     require(DIR_WS_CLASSES . 'upload.php');
     
  // calculate category path     // calculate category path
  if (isset($_GET['cPath'])) {     if (isset($_GET['cPath'])) {
    $cPath = $_GET['cPath'];       $cPath = $_GET['cPath'];
  } else {     } else {
    $cPath = '';       $cPath = '';
  }     }
  if (strlen($cPath) > 0) {     if (strlen($cPath) > 0) {
    $cPath_array = explode('_', $cPath);       $cPath_array = explode('_', $cPath);
    $current_category_id = $cPath_array[(sizeof($cPath_array)-1)];       $current_category_id = $cPath_array[(sizeof($cPath_array)-1)];
  } else {     } else {
    $current_category_id = 0;       $current_category_id = 0;
  }     }
     
  // default open navigation box     // default open navigation box
  if (!isset($_SESSION['selected_box'])) {     if (!isset($_SESSION['selected_box'])) {
    $_SESSION['selected_box'] = 'configuration';       $_SESSION['selected_box'] = 'configuration';
  }     }
  if (isset($_GET['selected_box'])) {     if (isset($_GET['selected_box'])) {
    $_SESSION['selected_box'] = $_GET['selected_box'];       $_SESSION['selected_box'] = $_GET['selected_box'];
  }     }
     
  // the following cache blocks are used in the Tools->Cache section     // the following cache blocks are used in the Tools->Cache section
  // ('language' in the filename is automatically replaced by available languages)     // ('language' in the filename is automatically replaced by available languages)
  $cache_blocks = array(array('title' => TEXT_CACHE_CATEGORIES, 'code' => 'categories', 'file' => 'categories_box-language.cache', 'multiple' => true),     $cache_blocks = array(array('title' => TEXT_CACHE_CATEGORIES, 'code' => 'categories', 'file' => 'categories_box-language.cache', 'multiple' => true),
                        array('title' => TEXT_CACHE_MANUFACTURERS, 'code' => 'manufacturers', 'file' => 'manufacturers_box-language.cache', 'multiple' => true),                           array('title' => TEXT_CACHE_MANUFACTURERS, 'code' => 'manufacturers', 'file' => 'manufacturers_box-language.cache', 'multiple' => true),
                        array('title' => TEXT_CACHE_ALSO_PURCHASED, 'code' => 'also_purchased', 'file' => 'also_purchased-language.cache', 'multiple' => true)                           array('title' => TEXT_CACHE_ALSO_PURCHASED, 'code' => 'also_purchased', 'file' => 'also_purchased-language.cache', 'multiple' => true)
                       );                          );
     
  // check if a default currency is set     // check if a default currency is set
  if (!defined('DEFAULT_CURRENCY')) {     if (!defined('DEFAULT_CURRENCY')) {
    $messageStack->add(ERROR_NO_DEFAULT_CURRENCY_DEFINED, 'error');       $messageStack->add(ERROR_NO_DEFAULT_CURRENCY_DEFINED, 'error');
  }     }
     
  // check if a default language is set     // check if a default language is set
  if (!defined('DEFAULT_LANGUAGE')) {     if (!defined('DEFAULT_LANGUAGE')) {
    $messageStack->add(ERROR_NO_DEFAULT_LANGUAGE_DEFINED, 'error');       $messageStack->add(ERROR_NO_DEFAULT_LANGUAGE_DEFINED, 'error');
  }     }
     
  // for Customers Status     // for Customers Status
  xtc_get_customers_statuses();     xtc_get_customers_statuses();
     
     
     
  $pagename = strtok($current_page, '.');     $pagename = strtok($current_page, '.');
  if (!isset($_SESSION['customer_id'])) {     if (!isset($_SESSION['customer_id'])) {
    xtc_redirect(xtc_href_link(FILENAME_LOGIN));       xtc_redirect(xtc_href_link(FILENAME_LOGIN));
  }     }
     
  if (xtc_check_permission($pagename) == '0') {     if (xtc_check_permission($pagename) == '0') {
    xtc_redirect(xtc_href_link(FILENAME_LOGIN));       xtc_redirect(xtc_href_link(FILENAME_LOGIN));
  }     }
     
     
    // Include Template Engine       // Include Template Engine
  require(DIR_FS_CATALOG.DIR_WS_CLASSES . 'Smarty_2.6.14/Smarty.class.php');     require(DIR_FS_CATALOG.DIR_WS_CLASSES . 'Smarty_2.6.14/Smarty.class.php');
     
     
?>   ?>