# osCommerce, Open Source E-Commerce Solutions
# http://www.oscommerce.com
#
# Database Backup For Frangipani DJSWAY
# Copyright (c) 2008 Frangipani DJSWAY
#
# Database: djswayc_djsway
# Database Server: localhost
#
# Backup Date: 07/07/2008 21:09:41

drop table if exists address_book;
create table address_book (
  address_book_id int(11) not null auto_increment,
  customers_id int(11) not null ,
  entry_gender char(1) not null ,
  entry_company varchar(32) ,
  entry_firstname varchar(32) not null ,
  entry_lastname varchar(32) not null ,
  entry_street_address varchar(64) not null ,
  entry_suburb varchar(32) ,
  entry_postcode varchar(10) not null ,
  entry_city varchar(32) not null ,
  entry_state varchar(32) ,
  entry_country_id int(11) default '0' not null ,
  entry_zone_id int(11) default '0' not null ,
  PRIMARY KEY (address_book_id),
  KEY idx_address_book_customers_id (customers_id)
);

insert into address_book (address_book_id, customers_id, entry_gender, entry_company, entry_firstname, entry_lastname, entry_street_address, entry_suburb, entry_postcode, entry_city, entry_state, entry_country_id, entry_zone_id) values ('1', '1', 'm', 'ACME Inc.', 'John', 'Doe', '1 Way Street', '', '12345', 'NeverNever', '', '223', '12');
insert into address_book (address_book_id, customers_id, entry_gender, entry_company, entry_firstname, entry_lastname, entry_street_address, entry_suburb, entry_postcode, entry_city, entry_state, entry_country_id, entry_zone_id) values ('2', '2', 'm', 'Easyeditors', 'Rob', 'Gilliland', '88 Steen St', 'Steen', '8889', 'Steen', '', '13', '183');
insert into address_book (address_book_id, customers_id, entry_gender, entry_company, entry_firstname, entry_lastname, entry_street_address, entry_suburb, entry_postcode, entry_city, entry_state, entry_country_id, entry_zone_id) values ('3', '3', 'f', '', 'dee', 'norman', '1 pacific dr', 'banora point', '2486', 'Tweed Heads South', '', '13', '183');
drop table if exists address_format;
create table address_format (
  address_format_id int(11) not null auto_increment,
  address_format varchar(128) not null ,
  address_summary varchar(48) not null ,
  PRIMARY KEY (address_format_id)
);

insert into address_format (address_format_id, address_format, address_summary) values ('1', '$firstname $lastname$cr$streets$cr$city, $postcode$cr$statecomma$country', '$city / $country');
insert into address_format (address_format_id, address_format, address_summary) values ('2', '$firstname $lastname$cr$streets$cr$city, $state    $postcode$cr$country', '$city, $state / $country');
insert into address_format (address_format_id, address_format, address_summary) values ('3', '$firstname $lastname$cr$streets$cr$city$cr$postcode - $statecomma$country', '$state / $country');
insert into address_format (address_format_id, address_format, address_summary) values ('4', '$firstname $lastname$cr$streets$cr$city ($postcode)$cr$country', '$postcode / $country');
insert into address_format (address_format_id, address_format, address_summary) values ('5', '$firstname $lastname$cr$streets$cr$postcode $city$cr$country', '$city / $country');
drop table if exists banners;
create table banners (
  banners_id int(11) not null auto_increment,
  banners_title varchar(64) not null ,
  banners_url varchar(255) not null ,
  banners_image varchar(64) not null ,
  banners_group varchar(10) not null ,
  banners_html_text text ,
  expires_impressions int(7) default '0' ,
  expires_date datetime ,
  date_scheduled datetime ,
  date_added datetime not null ,
  date_status_change datetime ,
  status int(1) default '1' not null ,
  PRIMARY KEY (banners_id)
);

insert into banners (banners_id, banners_title, banners_url, banners_image, banners_group, banners_html_text, expires_impressions, expires_date, date_scheduled, date_added, date_status_change, status) values ('1', 'osCommerce', 'http://www.oscommerce.com', 'banners/oscommerce.gif', '468x50', '', '0', NULL, NULL, '2008-03-19 00:05:04', NULL, '1');
drop table if exists banners_history;
create table banners_history (
  banners_history_id int(11) not null auto_increment,
  banners_id int(11) not null ,
  banners_shown int(5) default '0' not null ,
  banners_clicked int(5) default '0' not null ,
  banners_history_date datetime not null ,
  PRIMARY KEY (banners_history_id)
);

insert into banners_history (banners_history_id, banners_id, banners_shown, banners_clicked, banners_history_date) values ('1', '1', '2', '0', '2008-03-19 00:05:25');
drop table if exists categories;
create table categories (
  categories_id int(11) not null auto_increment,
  categories_image varchar(64) ,
  parent_id int(11) default '0' not null ,
  sort_order int(3) ,
  date_added datetime ,
  last_modified datetime ,
  PRIMARY KEY (categories_id),
  KEY idx_categories_parent_id (parent_id)
);

insert into categories (categories_id, categories_image, parent_id, sort_order, date_added, last_modified) values ('32', 'sticker-1.jpg', '0', '5', '2008-03-23 22:33:48', NULL);
insert into categories (categories_id, categories_image, parent_id, sort_order, date_added, last_modified) values ('30', 'AUDY.jpg', '0', '3', '2008-03-23 22:03:56', NULL);
insert into categories (categories_id, categories_image, parent_id, sort_order, date_added, last_modified) values ('31', 'CHCH.jpg', '0', '4', '2008-03-23 22:04:33', NULL);
insert into categories (categories_id, categories_image, parent_id, sort_order, date_added, last_modified) values ('29', 'DONA.jpg', '0', '2', '2008-03-23 22:03:07', NULL);
insert into categories (categories_id, categories_image, parent_id, sort_order, date_added, last_modified) values ('28', 'JLPK.jpg', '0', '1', '2008-03-23 22:02:29', NULL);
insert into categories (categories_id, categories_image, parent_id, sort_order, date_added, last_modified) values ('27', 'FVNE.jpg', '0', '0', '2008-03-23 22:00:52', NULL);
insert into categories (categories_id, categories_image, parent_id, sort_order, date_added, last_modified) values ('33', 'screen.jpg', '0', '6', '2008-03-23 22:37:18', NULL);
insert into categories (categories_id, categories_image, parent_id, sort_order, date_added, last_modified) values ('34', 'plumeria_book_1.jpg', '0', '7', '2008-03-23 23:54:41', NULL);
insert into categories (categories_id, categories_image, parent_id, sort_order, date_added, last_modified) values ('35', '', '0', '8', '2008-03-24 00:02:46', '2008-03-24 00:03:01');
insert into categories (categories_id, categories_image, parent_id, sort_order, date_added, last_modified) values ('36', 'DWCX(1).jpg', '0', '9', '2008-03-24 01:56:34', NULL);
insert into categories (categories_id, categories_image, parent_id, sort_order, date_added, last_modified) values ('37', 'FVNE(1).jpg', '0', '10', '2008-03-24 01:57:35', NULL);
drop table if exists categories_description;
create table categories_description (
  categories_id int(11) default '0' not null ,
  language_id int(11) default '1' not null ,
  categories_name varchar(32) not null ,
  PRIMARY KEY (categories_id, language_id),
  KEY idx_categories_name (categories_name)
);

insert into categories_description (categories_id, language_id, categories_name) values ('31', '1', 'Multicolour');
insert into categories_description (categories_id, language_id, categories_name) values ('29', '1', 'Reds');
insert into categories_description (categories_id, language_id, categories_name) values ('28', '1', 'Pinks');
insert into categories_description (categories_id, language_id, categories_name) values ('27', '1', 'Whites');
insert into categories_description (categories_id, language_id, categories_name) values ('30', '1', 'Yellows');
insert into categories_description (categories_id, language_id, categories_name) values ('32', '1', 'Stickers');
insert into categories_description (categories_id, language_id, categories_name) values ('33', '1', 'Screen Saver');
insert into categories_description (categories_id, language_id, categories_name) values ('34', '1', 'Books');
insert into categories_description (categories_id, language_id, categories_name) values ('35', '1', 'Landscaping');
insert into categories_description (categories_id, language_id, categories_name) values ('36', '1', 'Surprise Packs');
insert into categories_description (categories_id, language_id, categories_name) values ('37', '1', 'Frangipani Care');
drop table if exists configuration;
create table configuration (
  configuration_id int(11) not null auto_increment,
  configuration_title varchar(64) not null ,
  configuration_key varchar(64) not null ,
  configuration_value varchar(255) not null ,
  configuration_description varchar(255) not null ,
  configuration_group_id int(11) not null ,
  sort_order int(5) ,
  last_modified datetime ,
  date_added datetime not null ,
  use_function varchar(255) ,
  set_function varchar(255) ,
  PRIMARY KEY (configuration_id)
);

insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('1', 'Store Name', 'STORE_NAME', 'Frangipani DJSWAY', 'The name of my store', '1', '1', '2008-03-24 01:50:41', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('2', 'Store Owner', 'STORE_OWNER', 'Frangipani DJSWAY', 'The name of my store owner', '1', '2', '2008-03-24 01:50:57', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('3', 'E-Mail Address', 'STORE_OWNER_EMAIL_ADDRESS', 'gilliland@hostingwell.com', 'The e-mail address of my store owner', '1', '3', '2008-03-24 01:51:23', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('4', 'E-Mail From', 'EMAIL_FROM', 'gilliland@hostingwell.com', 'The e-mail address used in (sent) e-mails', '1', '4', '2008-03-24 01:51:37', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('5', 'Country', 'STORE_COUNTRY', '13', 'The country my store is located in <br><br><b>Note: Please remember to update the store zone.</b>', '1', '6', '2008-03-19 01:59:12', '2008-03-19 00:05:04', 'tep_get_country_name', 'tep_cfg_pull_down_country_list(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('6', 'Zone', 'STORE_ZONE', '18', 'The zone my store is located in', '1', '7', NULL, '2008-03-19 00:05:04', 'tep_cfg_get_zone_name', 'tep_cfg_pull_down_zone_list(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('7', 'Expected Sort Order', 'EXPECTED_PRODUCTS_SORT', 'desc', 'This is the sort order used in the expected products box.', '1', '8', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'asc\', \'desc\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('8', 'Expected Sort Field', 'EXPECTED_PRODUCTS_FIELD', 'date_expected', 'The column to sort by in the expected products box.', '1', '9', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'products_name\', \'date_expected\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('9', 'Switch To Default Language Currency', 'USE_DEFAULT_LANGUAGE_CURRENCY', 'false', 'Automatically switch to the language\'s currency when it is changed', '1', '10', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('10', 'Send Extra Order Emails To', 'SEND_EXTRA_ORDER_EMAILS_TO', 'gilliland@hostingwell.com', 'Send extra order emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', '1', '11', '2008-03-19 02:00:55', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('11', 'Use Search-Engine Safe URLs (still in development)', 'SEARCH_ENGINE_FRIENDLY_URLS', 'false', 'Use search-engine safe urls for all site links', '1', '12', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('12', 'Display Cart After Adding Product', 'DISPLAY_CART', 'true', 'Display the shopping cart after adding a product (or return back to their origin)', '1', '14', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('13', 'Allow Guest To Tell A Friend', 'ALLOW_GUEST_TO_TELL_A_FRIEND', 'true', 'Allow guests to tell a friend about a product', '1', '15', '2008-03-19 02:01:18', '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('14', 'Default Search Operator', 'ADVANCED_SEARCH_DEFAULT_OPERATOR', 'and', 'Default search operators', '1', '17', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'and\', \'or\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('15', 'Store Address and Phone', 'STORE_NAME_ADDRESS', 'Frangipani DJs Way 157 Piggabeen Road Tweed Heads West, NSW 2485 Australia', 'This is the Store Name, Address and Phone used on printable documents and displayed online', '1', '18', '2008-04-23 00:01:57', '2008-03-19 00:05:04', NULL, 'tep_cfg_textarea(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('16', 'Show Category Counts', 'SHOW_COUNTS', 'true', 'Count recursively how many products are in each category', '1', '19', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('17', 'Tax Decimal Places', 'TAX_DECIMAL_PLACES', '0', 'Pad the tax value this amount of decimal places', '1', '20', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('18', 'Display Prices with Tax', 'DISPLAY_PRICE_WITH_TAX', 'false', 'Display prices with tax included (true) or add the tax at the end (false)', '1', '21', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('19', 'First Name', 'ENTRY_FIRST_NAME_MIN_LENGTH', '2', 'Minimum length of first name', '2', '1', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('20', 'Last Name', 'ENTRY_LAST_NAME_MIN_LENGTH', '2', 'Minimum length of last name', '2', '2', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('21', 'Date of Birth', 'ENTRY_DOB_MIN_LENGTH', '10', 'Minimum length of date of birth', '2', '3', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('22', 'E-Mail Address', 'ENTRY_EMAIL_ADDRESS_MIN_LENGTH', '6', 'Minimum length of e-mail address', '2', '4', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('23', 'Street Address', 'ENTRY_STREET_ADDRESS_MIN_LENGTH', '5', 'Minimum length of street address', '2', '5', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('24', 'Company', 'ENTRY_COMPANY_MIN_LENGTH', '2', 'Minimum length of company name', '2', '6', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('25', 'Post Code', 'ENTRY_POSTCODE_MIN_LENGTH', '4', 'Minimum length of post code', '2', '7', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('26', 'City', 'ENTRY_CITY_MIN_LENGTH', '3', 'Minimum length of city', '2', '8', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('27', 'State', 'ENTRY_STATE_MIN_LENGTH', '2', 'Minimum length of state', '2', '9', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('28', 'Telephone Number', 'ENTRY_TELEPHONE_MIN_LENGTH', '3', 'Minimum length of telephone number', '2', '10', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('29', 'Password', 'ENTRY_PASSWORD_MIN_LENGTH', '5', 'Minimum length of password', '2', '11', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('30', 'Credit Card Owner Name', 'CC_OWNER_MIN_LENGTH', '3', 'Minimum length of credit card owner name', '2', '12', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('31', 'Credit Card Number', 'CC_NUMBER_MIN_LENGTH', '10', 'Minimum length of credit card number', '2', '13', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('32', 'Review Text', 'REVIEW_TEXT_MIN_LENGTH', '50', 'Minimum length of review text', '2', '14', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('33', 'Best Sellers', 'MIN_DISPLAY_BESTSELLERS', '1', 'Minimum number of best sellers to display', '2', '15', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('34', 'Also Purchased', 'MIN_DISPLAY_ALSO_PURCHASED', '1', 'Minimum number of products to display in the \'This Customer Also Purchased\' box', '2', '16', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('35', 'Address Book Entries', 'MAX_ADDRESS_BOOK_ENTRIES', '5', 'Maximum address book entries a customer is allowed to have', '3', '1', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('36', 'Search Results', 'MAX_DISPLAY_SEARCH_RESULTS', '20', 'Amount of products to list', '3', '2', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('37', 'Page Links', 'MAX_DISPLAY_PAGE_LINKS', '5', 'Number of \'number\' links use for page-sets', '3', '3', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('38', 'Special Products', 'MAX_DISPLAY_SPECIAL_PRODUCTS', '9', 'Maximum number of products on special to display', '3', '4', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('39', 'New Products Module', 'MAX_DISPLAY_NEW_PRODUCTS', '9', 'Maximum number of new products to display in a category', '3', '5', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('40', 'Products Expected', 'MAX_DISPLAY_UPCOMING_PRODUCTS', '10', 'Maximum number of products expected to display', '3', '6', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('41', 'Manufacturers List', 'MAX_DISPLAY_MANUFACTURERS_IN_A_LIST', '0', 'Used in manufacturers box; when the number of manufacturers exceeds this number, a drop-down list will be displayed instead of the default list', '3', '7', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('42', 'Manufacturers Select Size', 'MAX_MANUFACTURERS_LIST', '1', 'Used in manufacturers box; when this value is \'1\' the classic drop-down list will be used for the manufacturers box. Otherwise, a list-box with the specified number of rows will be displayed.', '3', '7', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('43', 'Length of Manufacturers Name', 'MAX_DISPLAY_MANUFACTURER_NAME_LEN', '15', 'Used in manufacturers box; maximum length of manufacturers name to display', '3', '8', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('44', 'New Reviews', 'MAX_DISPLAY_NEW_REVIEWS', '6', 'Maximum number of new reviews to display', '3', '9', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('45', 'Selection of Random Reviews', 'MAX_RANDOM_SELECT_REVIEWS', '10', 'How many records to select from to choose one random product review', '3', '10', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('46', 'Selection of Random New Products', 'MAX_RANDOM_SELECT_NEW', '10', 'How many records to select from to choose one random new product to display', '3', '11', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('47', 'Selection of Products on Special', 'MAX_RANDOM_SELECT_SPECIALS', '10', 'How many records to select from to choose one random product special to display', '3', '12', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('48', 'Categories To List Per Row', 'MAX_DISPLAY_CATEGORIES_PER_ROW', '3', 'How many categories to list per row', '3', '13', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('49', 'New Products Listing', 'MAX_DISPLAY_PRODUCTS_NEW', '10', 'Maximum number of new products to display in new products page', '3', '14', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('50', 'Best Sellers', 'MAX_DISPLAY_BESTSELLERS', '10', 'Maximum number of best sellers to display', '3', '15', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('51', 'Also Purchased', 'MAX_DISPLAY_ALSO_PURCHASED', '6', 'Maximum number of products to display in the \'This Customer Also Purchased\' box', '3', '16', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('52', 'Customer Order History Box', 'MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX', '6', 'Maximum number of products to display in the customer order history box', '3', '17', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('53', 'Order History', 'MAX_DISPLAY_ORDER_HISTORY', '10', 'Maximum number of orders to display in the order history page', '3', '18', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('54', 'Small Image Width', 'SMALL_IMAGE_WIDTH', '120', 'The pixel width of small images', '4', '1', '2008-04-23 00:03:59', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('55', 'Small Image Height', 'SMALL_IMAGE_HEIGHT', '', 'The pixel height of small images', '4', '2', '2008-04-02 18:52:50', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('56', 'Heading Image Width', 'HEADING_IMAGE_WIDTH', '', 'The pixel width of heading images', '4', '3', '2008-04-02 18:51:33', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('57', 'Heading Image Height', 'HEADING_IMAGE_HEIGHT', '40', 'The pixel height of heading images', '4', '4', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('58', 'Subcategory Image Width', 'SUBCATEGORY_IMAGE_WIDTH', '100', 'The pixel width of subcategory images', '4', '5', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('59', 'Subcategory Image Height', 'SUBCATEGORY_IMAGE_HEIGHT', '', 'The pixel height of subcategory images', '4', '6', '2008-04-02 18:51:48', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('60', 'Calculate Image Size', 'CONFIG_CALCULATE_IMAGE_SIZE', 'true', 'Calculate the size of images?', '4', '7', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('61', 'Image Required', 'IMAGE_REQUIRED', 'true', 'Enable to display broken images. Good for development.', '4', '8', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('62', 'Gender', 'ACCOUNT_GENDER', 'true', 'Display gender in the customers account', '5', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('63', 'Date of Birth', 'ACCOUNT_DOB', 'false', 'Display date of birth in the customers account', '5', '2', '2008-03-19 03:49:22', '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('64', 'Company', 'ACCOUNT_COMPANY', 'true', 'Display company in the customers account', '5', '3', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('65', 'Suburb', 'ACCOUNT_SUBURB', 'true', 'Display suburb in the customers account', '5', '4', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('66', 'State', 'ACCOUNT_STATE', 'true', 'Display state in the customers account', '5', '5', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('67', 'Installed Modules', 'MODULE_PAYMENT_INSTALLED', 'cod.php;moneyorder.php;paypal.php', 'List of payment module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: cc.php;cod.php;paypal.php)', '6', '0', '2008-03-24 01:53:48', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('68', 'Installed Modules', 'MODULE_ORDER_TOTAL_INSTALLED', 'ot_subtotal.php;ot_tax.php;ot_shipping.php;ot_total.php', 'List of order_total module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ot_subtotal.php;ot_tax.php;ot_shipping.php;ot_total.php)', '6', '0', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('69', 'Installed Modules', 'MODULE_SHIPPING_INSTALLED', 'quantitytable.php', 'List of shipping module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ups.php;flat.php;item.php)', '6', '0', '2008-04-23 02:07:50', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('70', 'Enable Cash On Delivery Module', 'MODULE_PAYMENT_COD_STATUS', 'True', 'Do you want to accept Cash On Delevery payments?', '6', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'True\', \'False\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('71', 'Payment Zone', 'MODULE_PAYMENT_COD_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', '6', '2', NULL, '2008-03-19 00:05:04', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('72', 'Sort order of display.', 'MODULE_PAYMENT_COD_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('73', 'Set Order Status', 'MODULE_PAYMENT_COD_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', '6', '0', NULL, '2008-03-19 00:05:04', 'tep_get_order_status_name', 'tep_cfg_pull_down_order_statuses(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('146', 'Payment Zone', 'MODULE_PAYMENT_MONEYORDER_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', '6', '2', NULL, '2008-03-24 01:53:35', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('147', 'Set Order Status', 'MODULE_PAYMENT_MONEYORDER_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', '6', '0', NULL, '2008-03-24 01:53:35', 'tep_get_order_status_name', 'tep_cfg_pull_down_order_statuses(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('144', 'Make Payable to:', 'MODULE_PAYMENT_MONEYORDER_PAYTO', '', 'Who should payments be made payable to?', '6', '1', NULL, '2008-03-24 01:53:35', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('145', 'Sort order of display.', 'MODULE_PAYMENT_MONEYORDER_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0', NULL, '2008-03-24 01:53:35', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('143', 'Enable Check/Money Order Module', 'MODULE_PAYMENT_MONEYORDER_STATUS', 'True', 'Do you want to accept Check/Money Order payments?', '6', '1', NULL, '2008-03-24 01:53:35', NULL, 'tep_cfg_select_option(array(\'True\', \'False\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('84', 'Default Currency', 'DEFAULT_CURRENCY', 'AUD', 'Default Currency', '6', '0', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('85', 'Default Language', 'DEFAULT_LANGUAGE', 'en', 'Default Language', '6', '0', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('86', 'Default Order Status For New Orders', 'DEFAULT_ORDERS_STATUS_ID', '1', 'When a new order is created, this order status will be assigned to it.', '6', '0', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('87', 'Display Shipping', 'MODULE_ORDER_TOTAL_SHIPPING_STATUS', 'true', 'Do you want to display the order shipping cost?', '6', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('88', 'Sort Order', 'MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER', '2', 'Sort order of display.', '6', '2', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('89', 'Allow Free Shipping', 'MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING', 'false', 'Do you want to allow free shipping?', '6', '3', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('90', 'Free Shipping For Orders Over', 'MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER', '50', 'Provide free shipping for orders over the set amount.', '6', '4', NULL, '2008-03-19 00:05:04', 'currencies->format', NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('91', 'Provide Free Shipping For Orders Made', 'MODULE_ORDER_TOTAL_SHIPPING_DESTINATION', 'national', 'Provide free shipping for orders sent to the set destination.', '6', '5', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'national\', \'international\', \'both\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('92', 'Display Sub-Total', 'MODULE_ORDER_TOTAL_SUBTOTAL_STATUS', 'true', 'Do you want to display the order sub-total cost?', '6', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('93', 'Sort Order', 'MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER', '1', 'Sort order of display.', '6', '2', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('94', 'Display Tax', 'MODULE_ORDER_TOTAL_TAX_STATUS', 'true', 'Do you want to display the order tax value?', '6', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('95', 'Sort Order', 'MODULE_ORDER_TOTAL_TAX_SORT_ORDER', '3', 'Sort order of display.', '6', '2', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('96', 'Display Total', 'MODULE_ORDER_TOTAL_TOTAL_STATUS', 'true', 'Do you want to display the total order value?', '6', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('97', 'Sort Order', 'MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER', '4', 'Sort order of display.', '6', '2', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('98', 'Country of Origin', 'SHIPPING_ORIGIN_COUNTRY', '13', 'Select the country of origin to be used in shipping quotes.', '7', '1', '2008-03-19 03:49:45', '2008-03-19 00:05:04', 'tep_get_country_name', 'tep_cfg_pull_down_country_list(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('99', 'Postal Code', 'SHIPPING_ORIGIN_ZIP', '2486', 'Enter the Postal Code (ZIP) of the Store to be used in shipping quotes.', '7', '2', '2008-03-19 03:50:00', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('100', 'Enter the Maximum Package Weight you will ship', 'SHIPPING_MAX_WEIGHT', '50', 'Carriers have a max weight limit for a single package. This is a common one for all.', '7', '3', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('101', 'Package Tare weight.', 'SHIPPING_BOX_WEIGHT', '3', 'What is the weight of typical packaging of small to medium packages?', '7', '4', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('102', 'Larger packages - percentage increase.', 'SHIPPING_BOX_PADDING', '0', 'For 10% enter 10', '7', '5', '2008-04-23 02:08:50', '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('103', 'Display Product Image', 'PRODUCT_LIST_IMAGE', '1', 'Do you want to display the Product Image?', '8', '1', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('104', 'Display Product Manufaturer Name', 'PRODUCT_LIST_MANUFACTURER', '0', 'Do you want to display the Product Manufacturer Name?', '8', '2', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('105', 'Display Product Model', 'PRODUCT_LIST_MODEL', '0', 'Do you want to display the Product Model?', '8', '3', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('106', 'Display Product Name', 'PRODUCT_LIST_NAME', '2', 'Do you want to display the Product Name?', '8', '4', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('107', 'Display Product Price', 'PRODUCT_LIST_PRICE', '3', 'Do you want to display the Product Price', '8', '5', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('108', 'Display Product Quantity', 'PRODUCT_LIST_QUANTITY', '0', 'Do you want to display the Product Quantity?', '8', '6', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('109', 'Display Product Weight', 'PRODUCT_LIST_WEIGHT', '0', 'Do you want to display the Product Weight?', '8', '7', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('110', 'Display Buy Now column', 'PRODUCT_LIST_BUY_NOW', '4', 'Do you want to display the Buy Now column?', '8', '8', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('111', 'Display Category/Manufacturer Filter (0=disable; 1=enable)', 'PRODUCT_LIST_FILTER', '1', 'Do you want to display the Category/Manufacturer Filter?', '8', '9', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('112', 'Location of Prev/Next Navigation Bar (1-top, 2-bottom, 3-both)', 'PREV_NEXT_BAR_LOCATION', '2', 'Sets the location of the Prev/Next Navigation Bar (1-top, 2-bottom, 3-both)', '8', '10', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('113', 'Check stock level', 'STOCK_CHECK', 'true', 'Check to see if sufficent stock is available', '9', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('114', 'Subtract stock', 'STOCK_LIMITED', 'true', 'Subtract product in stock by product orders', '9', '2', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('115', 'Allow Checkout', 'STOCK_ALLOW_CHECKOUT', 'true', 'Allow customer to checkout even if there is insufficient stock', '9', '3', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('116', 'Mark product out of stock', 'STOCK_MARK_PRODUCT_OUT_OF_STOCK', '***', 'Display something on screen so customer can see which product has insufficient stock', '9', '4', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('117', 'Stock Re-order level', 'STOCK_REORDER_LEVEL', '5', 'Define when stock needs to be re-ordered', '9', '5', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('118', 'Store Page Parse Time', 'STORE_PAGE_PARSE_TIME', 'false', 'Store the time it takes to parse a page', '10', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('119', 'Log Destination', 'STORE_PAGE_PARSE_TIME_LOG', '/var/log/www/tep/page_parse_time.log', 'Directory and filename of the page parse time log', '10', '2', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('120', 'Log Date Format', 'STORE_PARSE_DATE_TIME_FORMAT', '%d/%m/%Y %H:%M:%S', 'The date format', '10', '3', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('121', 'Display The Page Parse Time', 'DISPLAY_PAGE_PARSE_TIME', 'true', 'Display the page parse time (store page parse time must be enabled)', '10', '4', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('122', 'Store Database Queries', 'STORE_DB_TRANSACTIONS', 'false', 'Store the database queries in the page parse time log (PHP4 only)', '10', '5', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('123', 'Use Cache', 'USE_CACHE', 'false', 'Use caching features', '11', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('124', 'Cache Directory', 'DIR_FS_CACHE', '/tmp/', 'The directory where the cached files are saved', '11', '2', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('125', 'E-Mail Transport Method', 'EMAIL_TRANSPORT', 'sendmail', 'Defines if this server uses a local connection to sendmail or uses an SMTP connection via TCP/IP. Servers running on Windows and MacOS should change this setting to SMTP.', '12', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'sendmail\', \'smtp\'),');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('126', 'E-Mail Linefeeds', 'EMAIL_LINEFEED', 'LF', 'Defines the character sequence used to separate mail headers.', '12', '2', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'LF\', \'CRLF\'),');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('127', 'Use MIME HTML When Sending Emails', 'EMAIL_USE_HTML', 'false', 'Send e-mails in HTML format', '12', '3', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'),');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('128', 'Verify E-Mail Addresses Through DNS', 'ENTRY_EMAIL_ADDRESS_CHECK', 'false', 'Verify e-mail address through a DNS server', '12', '4', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('129', 'Send E-Mails', 'SEND_EMAILS', 'true', 'Send out e-mails', '12', '5', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('130', 'Enable download', 'DOWNLOAD_ENABLED', 'false', 'Enable the products download functions.', '13', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('131', 'Download by redirect', 'DOWNLOAD_BY_REDIRECT', 'false', 'Use browser redirection for download. Disable on non-Unix systems.', '13', '2', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('132', 'Expiry delay (days)', 'DOWNLOAD_MAX_DAYS', '7', 'Set number of days before the download link expires. 0 means no limit.', '13', '3', NULL, '2008-03-19 00:05:04', NULL, '');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('133', 'Maximum number of downloads', 'DOWNLOAD_MAX_COUNT', '5', 'Set the maximum number of downloads. 0 means no download authorized.', '13', '4', NULL, '2008-03-19 00:05:04', NULL, '');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('134', 'Enable GZip Compression', 'GZIP_COMPRESSION', 'false', 'Enable HTTP GZip compression.', '14', '1', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'true\', \'false\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('135', 'Compression Level', 'GZIP_LEVEL', '5', 'Use this compression level 0-9 (0 = minimum, 9 = maximum).', '14', '2', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('136', 'Session Directory', 'SESSION_WRITE_DIRECTORY', '/tmp', 'If sessions are file based, store them in this directory.', '15', '1', NULL, '2008-03-19 00:05:04', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('137', 'Force Cookie Use', 'SESSION_FORCE_COOKIE_USE', 'False', 'Force the use of sessions when cookies are only enabled.', '15', '2', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'True\', \'False\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('138', 'Check SSL Session ID', 'SESSION_CHECK_SSL_SESSION_ID', 'False', 'Validate the SSL_SESSION_ID on every secure HTTPS page request.', '15', '3', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'True\', \'False\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('139', 'Check User Agent', 'SESSION_CHECK_USER_AGENT', 'False', 'Validate the clients browser user agent on every page request.', '15', '4', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'True\', \'False\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('140', 'Check IP Address', 'SESSION_CHECK_IP_ADDRESS', 'False', 'Validate the clients IP address on every page request.', '15', '5', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'True\', \'False\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('141', 'Prevent Spider Sessions', 'SESSION_BLOCK_SPIDERS', 'False', 'Prevent known spiders from starting a session.', '15', '6', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'True\', \'False\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('142', 'Recreate Session', 'SESSION_RECREATE', 'False', 'Recreate the session to generate a new session ID when the customer logs on or creates an account (PHP >=4.1 needed).', '15', '7', NULL, '2008-03-19 00:05:04', NULL, 'tep_cfg_select_option(array(\'True\', \'False\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('148', 'Enable PayPal Module', 'MODULE_PAYMENT_PAYPAL_STATUS', 'True', 'Do you want to accept PayPal payments?', '6', '3', NULL, '2008-03-24 01:53:47', NULL, 'tep_cfg_select_option(array(\'True\', \'False\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('149', 'E-Mail Address', 'MODULE_PAYMENT_PAYPAL_ID', 'gilliland@hostingwell.com', 'The e-mail address to use for the PayPal service', '6', '4', NULL, '2008-03-24 01:53:47', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('150', 'Transaction Currency', 'MODULE_PAYMENT_PAYPAL_CURRENCY', 'Selected Currency', 'The currency to use for credit card transactions', '6', '6', NULL, '2008-03-24 01:53:47', NULL, 'tep_cfg_select_option(array(\'Selected Currency\',\'Only USD\',\'Only CAD\',\'Only EUR\',\'Only GBP\',\'Only JPY\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('151', 'Sort order of display.', 'MODULE_PAYMENT_PAYPAL_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0', NULL, '2008-03-24 01:53:47', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('152', 'Payment Zone', 'MODULE_PAYMENT_PAYPAL_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', '6', '2', NULL, '2008-03-24 01:53:47', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('153', 'Set Order Status', 'MODULE_PAYMENT_PAYPAL_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', '6', '0', NULL, '2008-03-24 01:53:47', 'tep_get_order_status_name', 'tep_cfg_pull_down_order_statuses(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('180', 'Sort Order', 'MODULE_SHIPPING_QUANTITY_TABLE_SORT_ORDER', '0', 'Sort order of display.', '6', '0', NULL, '2008-04-23 00:28:22', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('179', 'Shipping Zone', 'MODULE_SHIPPING_QUANTITY_TABLE_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', '6', '0', NULL, '2008-04-23 00:28:22', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('178', 'Tax Class', 'MODULE_SHIPPING_QUANTITY_TABLE_TAX_CLASS', '0', 'Use the following tax class on the shipping fee.', '6', '0', NULL, '2008-04-23 00:28:22', 'tep_get_tax_class_title', 'tep_cfg_pull_down_tax_classes(');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('176', 'Table Method', 'MODULE_SHIPPING_QUANTITY_TABLE_MODE', 'quantity', 'The shipping cost is based on the order total or the total weight of the items ordered.', '6', '0', NULL, '2008-04-23 00:28:22', NULL, 'tep_cfg_select_option(array(\'weight\', \'price\',\'quantity\'), ');
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('177', 'Handling Fee', 'MODULE_SHIPPING_QUANTITY_TABLE_HANDLING', '0', 'Handling fee for this shipping method.', '6', '0', NULL, '2008-04-23 00:28:22', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('175', 'Shipping Table', 'MODULE_SHIPPING_QUANTITY_TABLE_COST', '1:9.90,4:25.00,6:30.00,8:35.00,10:40.00,16:65.00,25:100.00,30:120.00,40:160.00,50:190,75:220', 'The shipping cost is based on the total cost or weight of items. Example: 25:8.50,50:5.50,etc.. Up to 25 charge 8.50, from there to 50 charge 5.50, etc', '6', '0', NULL, '2008-04-23 00:28:22', NULL, NULL);
insert into configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) values ('174', 'Enable Table Method', 'MODULE_SHIPPING_QUANTITY_TABLE_STATUS', 'True', 'Do you want to offer table rate shipping?', '6', '0', NULL, '2008-04-23 00:28:22', NULL, 'tep_cfg_select_option(array(\'True\', \'False\'), ');
drop table if exists configuration_group;
create table configuration_group (
  configuration_group_id int(11) not null auto_increment,
  configuration_group_title varchar(64) not null ,
  configuration_group_description varchar(255) not null ,
  sort_order int(5) ,
  visible int(1) default '1' ,
  PRIMARY KEY (configuration_group_id)
);

insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('1', 'My Store', 'General information about my store', '1', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('2', 'Minimum Values', 'The minimum values for functions / data', '2', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('3', 'Maximum Values', 'The maximum values for functions / data', '3', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('4', 'Images', 'Image parameters', '4', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('5', 'Customer Details', 'Customer account configuration', '5', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('6', 'Module Options', 'Hidden from configuration', '6', '0');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('7', 'Shipping/Packaging', 'Shipping options available at my store', '7', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('8', 'Product Listing', 'Product Listing    configuration options', '8', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('9', 'Stock', 'Stock configuration options', '9', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('10', 'Logging', 'Logging configuration options', '10', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('11', 'Cache', 'Caching configuration options', '11', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('12', 'E-Mail Options', 'General setting for E-Mail transport and HTML E-Mails', '12', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('13', 'Download', 'Downloadable products options', '13', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('14', 'GZip Compression', 'GZip compression options', '14', '1');
insert into configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) values ('15', 'Sessions', 'Session options', '15', '1');
drop table if exists counter;
create table counter (
  startdate char(8) ,
  counter int(12) 
);

insert into counter (startdate, counter) values ('20080319', '953');
drop table if exists counter_history;
create table counter_history (
  month char(8) ,
  counter int(12) 
);

drop table if exists countries;
create table countries (
  countries_id int(11) not null auto_increment,
  countries_name varchar(64) not null ,
  countries_iso_code_2 char(2) not null ,
  countries_iso_code_3 char(3) not null ,
  address_format_id int(11) not null ,
  PRIMARY KEY (countries_id),
  KEY IDX_COUNTRIES_NAME (countries_name)
);

insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('1', 'Afghanistan', 'AF', 'AFG', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('2', 'Albania', 'AL', 'ALB', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('3', 'Algeria', 'DZ', 'DZA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('4', 'American Samoa', 'AS', 'ASM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('5', 'Andorra', 'AD', 'AND', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('6', 'Angola', 'AO', 'AGO', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('7', 'Anguilla', 'AI', 'AIA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('8', 'Antarctica', 'AQ', 'ATA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('9', 'Antigua and Barbuda', 'AG', 'ATG', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('10', 'Argentina', 'AR', 'ARG', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('11', 'Armenia', 'AM', 'ARM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('12', 'Aruba', 'AW', 'ABW', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('13', 'Australia', 'AU', 'AUS', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('14', 'Austria', 'AT', 'AUT', '5');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('15', 'Azerbaijan', 'AZ', 'AZE', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('16', 'Bahamas', 'BS', 'BHS', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('17', 'Bahrain', 'BH', 'BHR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('18', 'Bangladesh', 'BD', 'BGD', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('19', 'Barbados', 'BB', 'BRB', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('20', 'Belarus', 'BY', 'BLR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('21', 'Belgium', 'BE', 'BEL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('22', 'Belize', 'BZ', 'BLZ', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('23', 'Benin', 'BJ', 'BEN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('24', 'Bermuda', 'BM', 'BMU', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('25', 'Bhutan', 'BT', 'BTN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('26', 'Bolivia', 'BO', 'BOL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('27', 'Bosnia and Herzegowina', 'BA', 'BIH', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('28', 'Botswana', 'BW', 'BWA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('29', 'Bouvet Island', 'BV', 'BVT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('30', 'Brazil', 'BR', 'BRA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('31', 'British Indian Ocean Territory', 'IO', 'IOT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('32', 'Brunei Darussalam', 'BN', 'BRN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('33', 'Bulgaria', 'BG', 'BGR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('34', 'Burkina Faso', 'BF', 'BFA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('35', 'Burundi', 'BI', 'BDI', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('36', 'Cambodia', 'KH', 'KHM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('37', 'Cameroon', 'CM', 'CMR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('38', 'Canada', 'CA', 'CAN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('39', 'Cape Verde', 'CV', 'CPV', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('40', 'Cayman Islands', 'KY', 'CYM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('41', 'Central African Republic', 'CF', 'CAF', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('42', 'Chad', 'TD', 'TCD', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('43', 'Chile', 'CL', 'CHL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('44', 'China', 'CN', 'CHN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('45', 'Christmas Island', 'CX', 'CXR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('46', 'Cocos (Keeling) Islands', 'CC', 'CCK', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('47', 'Colombia', 'CO', 'COL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('48', 'Comoros', 'KM', 'COM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('49', 'Congo', 'CG', 'COG', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('50', 'Cook Islands', 'CK', 'COK', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('51', 'Costa Rica', 'CR', 'CRI', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('52', 'Cote D\'Ivoire', 'CI', 'CIV', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('53', 'Croatia', 'HR', 'HRV', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('54', 'Cuba', 'CU', 'CUB', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('55', 'Cyprus', 'CY', 'CYP', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('56', 'Czech Republic', 'CZ', 'CZE', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('57', 'Denmark', 'DK', 'DNK', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('58', 'Djibouti', 'DJ', 'DJI', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('59', 'Dominica', 'DM', 'DMA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('60', 'Dominican Republic', 'DO', 'DOM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('61', 'East Timor', 'TP', 'TMP', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('62', 'Ecuador', 'EC', 'ECU', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('63', 'Egypt', 'EG', 'EGY', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('64', 'El Salvador', 'SV', 'SLV', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('65', 'Equatorial Guinea', 'GQ', 'GNQ', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('66', 'Eritrea', 'ER', 'ERI', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('67', 'Estonia', 'EE', 'EST', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('68', 'Ethiopia', 'ET', 'ETH', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('69', 'Falkland Islands (Malvinas)', 'FK', 'FLK', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('70', 'Faroe Islands', 'FO', 'FRO', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('71', 'Fiji', 'FJ', 'FJI', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('72', 'Finland', 'FI', 'FIN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('73', 'France', 'FR', 'FRA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('74', 'France, Metropolitan', 'FX', 'FXX', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('75', 'French Guiana', 'GF', 'GUF', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('76', 'French Polynesia', 'PF', 'PYF', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('77', 'French Southern Territories', 'TF', 'ATF', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('78', 'Gabon', 'GA', 'GAB', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('79', 'Gambia', 'GM', 'GMB', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('80', 'Georgia', 'GE', 'GEO', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('81', 'Germany', 'DE', 'DEU', '5');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('82', 'Ghana', 'GH', 'GHA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('83', 'Gibraltar', 'GI', 'GIB', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('84', 'Greece', 'GR', 'GRC', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('85', 'Greenland', 'GL', 'GRL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('86', 'Grenada', 'GD', 'GRD', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('87', 'Guadeloupe', 'GP', 'GLP', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('88', 'Guam', 'GU', 'GUM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('89', 'Guatemala', 'GT', 'GTM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('90', 'Guinea', 'GN', 'GIN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('91', 'Guinea-bissau', 'GW', 'GNB', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('92', 'Guyana', 'GY', 'GUY', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('93', 'Haiti', 'HT', 'HTI', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('94', 'Heard and Mc Donald Islands', 'HM', 'HMD', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('95', 'Honduras', 'HN', 'HND', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('96', 'Hong Kong', 'HK', 'HKG', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('97', 'Hungary', 'HU', 'HUN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('98', 'Iceland', 'IS', 'ISL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('99', 'India', 'IN', 'IND', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('100', 'Indonesia', 'ID', 'IDN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('101', 'Iran (Islamic Republic of)', 'IR', 'IRN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('102', 'Iraq', 'IQ', 'IRQ', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('103', 'Ireland', 'IE', 'IRL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('104', 'Israel', 'IL', 'ISR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('105', 'Italy', 'IT', 'ITA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('106', 'Jamaica', 'JM', 'JAM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('107', 'Japan', 'JP', 'JPN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('108', 'Jordan', 'JO', 'JOR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('109', 'Kazakhstan', 'KZ', 'KAZ', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('110', 'Kenya', 'KE', 'KEN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('111', 'Kiribati', 'KI', 'KIR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('112', 'Korea, Democratic People\'s Republic of', 'KP', 'PRK', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('113', 'Korea, Republic of', 'KR', 'KOR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('114', 'Kuwait', 'KW', 'KWT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('115', 'Kyrgyzstan', 'KG', 'KGZ', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('116', 'Lao People\'s Democratic Republic', 'LA', 'LAO', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('117', 'Latvia', 'LV', 'LVA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('118', 'Lebanon', 'LB', 'LBN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('119', 'Lesotho', 'LS', 'LSO', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('120', 'Liberia', 'LR', 'LBR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('121', 'Libyan Arab Jamahiriya', 'LY', 'LBY', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('122', 'Liechtenstein', 'LI', 'LIE', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('123', 'Lithuania', 'LT', 'LTU', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('124', 'Luxembourg', 'LU', 'LUX', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('125', 'Macau', 'MO', 'MAC', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('126', 'Macedonia, The Former Yugoslav Republic of', 'MK', 'MKD', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('127', 'Madagascar', 'MG', 'MDG', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('128', 'Malawi', 'MW', 'MWI', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('129', 'Malaysia', 'MY', 'MYS', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('130', 'Maldives', 'MV', 'MDV', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('131', 'Mali', 'ML', 'MLI', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('132', 'Malta', 'MT', 'MLT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('133', 'Marshall Islands', 'MH', 'MHL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('134', 'Martinique', 'MQ', 'MTQ', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('135', 'Mauritania', 'MR', 'MRT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('136', 'Mauritius', 'MU', 'MUS', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('137', 'Mayotte', 'YT', 'MYT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('138', 'Mexico', 'MX', 'MEX', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('139', 'Micronesia, Federated States of', 'FM', 'FSM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('140', 'Moldova, Republic of', 'MD', 'MDA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('141', 'Monaco', 'MC', 'MCO', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('142', 'Mongolia', 'MN', 'MNG', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('143', 'Montserrat', 'MS', 'MSR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('144', 'Morocco', 'MA', 'MAR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('145', 'Mozambique', 'MZ', 'MOZ', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('146', 'Myanmar', 'MM', 'MMR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('147', 'Namibia', 'NA', 'NAM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('148', 'Nauru', 'NR', 'NRU', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('149', 'Nepal', 'NP', 'NPL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('150', 'Netherlands', 'NL', 'NLD', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('151', 'Netherlands Antilles', 'AN', 'ANT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('152', 'New Caledonia', 'NC', 'NCL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('153', 'New Zealand', 'NZ', 'NZL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('154', 'Nicaragua', 'NI', 'NIC', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('155', 'Niger', 'NE', 'NER', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('156', 'Nigeria', 'NG', 'NGA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('157', 'Niue', 'NU', 'NIU', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('158', 'Norfolk Island', 'NF', 'NFK', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('159', 'Northern Mariana Islands', 'MP', 'MNP', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('160', 'Norway', 'NO', 'NOR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('161', 'Oman', 'OM', 'OMN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('162', 'Pakistan', 'PK', 'PAK', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('163', 'Palau', 'PW', 'PLW', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('164', 'Panama', 'PA', 'PAN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('165', 'Papua New Guinea', 'PG', 'PNG', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('166', 'Paraguay', 'PY', 'PRY', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('167', 'Peru', 'PE', 'PER', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('168', 'Philippines', 'PH', 'PHL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('169', 'Pitcairn', 'PN', 'PCN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('170', 'Poland', 'PL', 'POL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('171', 'Portugal', 'PT', 'PRT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('172', 'Puerto Rico', 'PR', 'PRI', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('173', 'Qatar', 'QA', 'QAT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('174', 'Reunion', 'RE', 'REU', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('175', 'Romania', 'RO', 'ROM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('176', 'Russian Federation', 'RU', 'RUS', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('177', 'Rwanda', 'RW', 'RWA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('178', 'Saint Kitts and Nevis', 'KN', 'KNA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('179', 'Saint Lucia', 'LC', 'LCA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('180', 'Saint Vincent and the Grenadines', 'VC', 'VCT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('181', 'Samoa', 'WS', 'WSM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('182', 'San Marino', 'SM', 'SMR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('183', 'Sao Tome and Principe', 'ST', 'STP', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('184', 'Saudi Arabia', 'SA', 'SAU', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('185', 'Senegal', 'SN', 'SEN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('186', 'Seychelles', 'SC', 'SYC', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('187', 'Sierra Leone', 'SL', 'SLE', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('188', 'Singapore', 'SG', 'SGP', '4');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('189', 'Slovakia (Slovak Republic)', 'SK', 'SVK', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('190', 'Slovenia', 'SI', 'SVN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('191', 'Solomon Islands', 'SB', 'SLB', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('192', 'Somalia', 'SO', 'SOM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('193', 'South Africa', 'ZA', 'ZAF', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('194', 'South Georgia and the South Sandwich Islands', 'GS', 'SGS', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('195', 'Spain', 'ES', 'ESP', '3');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('196', 'Sri Lanka', 'LK', 'LKA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('197', 'St. Helena', 'SH', 'SHN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('198', 'St. Pierre and Miquelon', 'PM', 'SPM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('199', 'Sudan', 'SD', 'SDN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('200', 'Suriname', 'SR', 'SUR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('201', 'Svalbard and Jan Mayen Islands', 'SJ', 'SJM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('202', 'Swaziland', 'SZ', 'SWZ', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('203', 'Sweden', 'SE', 'SWE', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('204', 'Switzerland', 'CH', 'CHE', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('205', 'Syrian Arab Republic', 'SY', 'SYR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('206', 'Taiwan', 'TW', 'TWN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('207', 'Tajikistan', 'TJ', 'TJK', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('208', 'Tanzania, United Republic of', 'TZ', 'TZA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('209', 'Thailand', 'TH', 'THA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('210', 'Togo', 'TG', 'TGO', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('211', 'Tokelau', 'TK', 'TKL', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('212', 'Tonga', 'TO', 'TON', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('213', 'Trinidad and Tobago', 'TT', 'TTO', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('214', 'Tunisia', 'TN', 'TUN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('215', 'Turkey', 'TR', 'TUR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('216', 'Turkmenistan', 'TM', 'TKM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('217', 'Turks and Caicos Islands', 'TC', 'TCA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('218', 'Tuvalu', 'TV', 'TUV', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('219', 'Uganda', 'UG', 'UGA', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('220', 'Ukraine', 'UA', 'UKR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('221', 'United Arab Emirates', 'AE', 'ARE', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('222', 'United Kingdom', 'GB', 'GBR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('223', 'United States', 'US', 'USA', '2');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('224', 'United States Minor Outlying Islands', 'UM', 'UMI', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('225', 'Uruguay', 'UY', 'URY', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('226', 'Uzbekistan', 'UZ', 'UZB', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('227', 'Vanuatu', 'VU', 'VUT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('228', 'Vatican City State (Holy See)', 'VA', 'VAT', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('229', 'Venezuela', 'VE', 'VEN', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('230', 'Viet Nam', 'VN', 'VNM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('231', 'Virgin Islands (British)', 'VG', 'VGB', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('232', 'Virgin Islands (U.S.)', 'VI', 'VIR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('233', 'Wallis and Futuna Islands', 'WF', 'WLF', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('234', 'Western Sahara', 'EH', 'ESH', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('235', 'Yemen', 'YE', 'YEM', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('236', 'Yugoslavia', 'YU', 'YUG', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('237', 'Zaire', 'ZR', 'ZAR', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('238', 'Zambia', 'ZM', 'ZMB', '1');
insert into countries (countries_id, countries_name, countries_iso_code_2, countries_iso_code_3, address_format_id) values ('239', 'Zimbabwe', 'ZW', 'ZWE', '1');
drop table if exists currencies;
create table currencies (
  currencies_id int(11) not null auto_increment,
  title varchar(32) not null ,
  code char(3) not null ,
  symbol_left varchar(12) ,
  symbol_right varchar(12) ,
  decimal_point char(1) ,
  thousands_point char(1) ,
  decimal_places char(1) ,
  value float(13,8) ,
  last_updated datetime ,
  PRIMARY KEY (currencies_id)
);

insert into currencies (currencies_id, title, code, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, value, last_updated) values ('1', 'US Dollar', 'USD', '$', '', '.', ',', '2', '0.93280500', '2008-03-19 00:05:04');
insert into currencies (currencies_id, title, code, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, value, last_updated) values ('3', 'AUD', 'AUD', '$', '', '.', ',', '', '1.00000000', NULL);
drop table if exists customers;
create table customers (
  customers_id int(11) not null auto_increment,
  customers_gender char(1) not null ,
  customers_firstname varchar(32) not null ,
  customers_lastname varchar(32) not null ,
  customers_dob datetime default '0000-00-00 00:00:00' not null ,
  customers_email_address varchar(96) not null ,
  customers_default_address_id int(11) ,
  customers_telephone varchar(32) not null ,
  customers_fax varchar(32) ,
  customers_password varchar(40) not null ,
  customers_newsletter char(1) ,
  PRIMARY KEY (customers_id)
);

insert into customers (customers_id, customers_gender, customers_firstname, customers_lastname, customers_dob, customers_email_address, customers_default_address_id, customers_telephone, customers_fax, customers_password, customers_newsletter) values ('1', 'm', 'John', 'doe', '2001-01-01 00:00:00', 'root@localhost', '1', '12345', '', 'd95e8fa7f20a009372eb3477473fcd34:1c', '0');
insert into customers (customers_id, customers_gender, customers_firstname, customers_lastname, customers_dob, customers_email_address, customers_default_address_id, customers_telephone, customers_fax, customers_password, customers_newsletter) values ('2', 'm', 'Rob', 'Gilliland', '0000-00-00 00:00:00', 'gilliland@hostingwell.com', '2', '34563456', '35634566', 'f7ccbbefe3afa8fef9eb0376acc69fa1:c9', '');
insert into customers (customers_id, customers_gender, customers_firstname, customers_lastname, customers_dob, customers_email_address, customers_default_address_id, customers_telephone, customers_fax, customers_password, customers_newsletter) values ('3', 'f', 'dee', 'norman', '0000-00-00 00:00:00', 'sales@djsway.com', '3', '07 55 99 7117', '', '43a8a080e525d0227acc3eecaf38d8a3:99', '1');
drop table if exists customers_basket;
create table customers_basket (
  customers_basket_id int(11) not null auto_increment,
  customers_id int(11) not null ,
  products_id tinytext not null ,
  customers_basket_quantity int(2) not null ,
  final_price decimal(15,4) ,
  customers_basket_date_added char(8) ,
  PRIMARY KEY (customers_basket_id)
);

insert into customers_basket (customers_basket_id, customers_id, products_id, customers_basket_quantity, final_price, customers_basket_date_added) values ('9', '3', '34', '1', NULL, '20080324');
insert into customers_basket (customers_basket_id, customers_id, products_id, customers_basket_quantity, final_price, customers_basket_date_added) values ('8', '3', '32', '1', NULL, '20080324');
insert into customers_basket (customers_basket_id, customers_id, products_id, customers_basket_quantity, final_price, customers_basket_date_added) values ('23', '2', '104{2}28', '1', NULL, '20080527');
drop table if exists customers_basket_attributes;
create table customers_basket_attributes (
  customers_basket_attributes_id int(11) not null auto_increment,
  customers_id int(11) not null ,
  products_id tinytext not null ,
  products_options_id int(11) not null ,
  products_options_value_id int(11) not null ,
  PRIMARY KEY (customers_basket_attributes_id)
);

insert into customers_basket_attributes (customers_basket_attributes_id, customers_id, products_id, products_options_id, products_options_value_id) values ('17', '2', '104{2}28', '2', '28');
drop table if exists customers_info;
create table customers_info (
  customers_info_id int(11) not null ,
  customers_info_date_of_last_logon datetime ,
  customers_info_number_of_logons int(5) ,
  customers_info_date_account_created datetime ,
  customers_info_date_account_last_modified datetime ,
  global_product_notifications int(1) default '0' ,
  PRIMARY KEY (customers_info_id)
);

insert into customers_info (customers_info_id, customers_info_date_of_last_logon, customers_info_number_of_logons, customers_info_date_account_created, customers_info_date_account_last_modified, global_product_notifications) values ('1', NULL, '0', '2008-03-19 00:05:04', NULL, '0');
insert into customers_info (customers_info_id, customers_info_date_of_last_logon, customers_info_number_of_logons, customers_info_date_account_created, customers_info_date_account_last_modified, global_product_notifications) values ('2', '2008-05-27 21:39:42', '10', '2008-03-19 16:53:22', NULL, '0');
insert into customers_info (customers_info_id, customers_info_date_of_last_logon, customers_info_number_of_logons, customers_info_date_account_created, customers_info_date_account_last_modified, global_product_notifications) values ('3', NULL, '0', '2008-03-24 17:40:14', NULL, '0');
drop table if exists geo_zones;
create table geo_zones (
  geo_zone_id int(11) not null auto_increment,
  geo_zone_name varchar(32) not null ,
  geo_zone_description varchar(255) not null ,
  last_modified datetime ,
  date_added datetime not null ,
  PRIMARY KEY (geo_zone_id)
);

insert into geo_zones (geo_zone_id, geo_zone_name, geo_zone_description, last_modified, date_added) values ('2', 'Australia', 'GST', NULL, '2008-03-19 16:40:40');
drop table if exists languages;
create table languages (
  languages_id int(11) not null auto_increment,
  name varchar(32) not null ,
  code char(2) not null ,
  image varchar(64) ,
  directory varchar(32) ,
  sort_order int(3) ,
  PRIMARY KEY (languages_id),
  KEY IDX_LANGUAGES_NAME (name)
);

insert into languages (languages_id, name, code, image, directory, sort_order) values ('1', 'English', 'en', 'icon.gif', 'english', '1');
drop table if exists manufacturers;
create table manufacturers (
  manufacturers_id int(11) not null auto_increment,
  manufacturers_name varchar(32) not null ,
  manufacturers_image varchar(64) ,
  date_added datetime ,
  last_modified datetime ,
  PRIMARY KEY (manufacturers_id),
  KEY IDX_MANUFACTURERS_NAME (manufacturers_name)
);

drop table if exists manufacturers_info;
create table manufacturers_info (
  manufacturers_id int(11) not null ,
  languages_id int(11) not null ,
  manufacturers_url varchar(255) not null ,
  url_clicked int(5) default '0' not null ,
  date_last_click datetime ,
  PRIMARY KEY (manufacturers_id, languages_id)
);

drop table if exists newsletters;
create table newsletters (
  newsletters_id int(11) not null auto_increment,
  title varchar(255) not null ,
  content text not null ,
  module varchar(255) not null ,
  date_added datetime not null ,
  date_sent datetime ,
  status int(1) ,
  locked int(1) default '0' ,
  PRIMARY KEY (newsletters_id)
);

drop table if exists orders;
create table orders (
  orders_id int(11) not null auto_increment,
  customers_id int(11) not null ,
  customers_name varchar(64) not null ,
  customers_company varchar(32) ,
  customers_street_address varchar(64) not null ,
  customers_suburb varchar(32) ,
  customers_city varchar(32) not null ,
  customers_postcode varchar(10) not null ,
  customers_state varchar(32) ,
  customers_country varchar(32) not null ,
  customers_telephone varchar(32) not null ,
  customers_email_address varchar(96) not null ,
  customers_address_format_id int(5) not null ,
  delivery_name varchar(64) not null ,
  delivery_company varchar(32) ,
  delivery_street_address varchar(64) not null ,
  delivery_suburb varchar(32) ,
  delivery_city varchar(32) not null ,
  delivery_postcode varchar(10) not null ,
  delivery_state varchar(32) ,
  delivery_country varchar(32) not null ,
  delivery_address_format_id int(5) not null ,
  billing_name varchar(64) not null ,
  billing_company varchar(32) ,
  billing_street_address varchar(64) not null ,
  billing_suburb varchar(32) ,
  billing_city varchar(32) not null ,
  billing_postcode varchar(10) not null ,
  billing_state varchar(32) ,
  billing_country varchar(32) not null ,
  billing_address_format_id int(5) not null ,
  payment_method varchar(32) not null ,
  cc_type varchar(20) ,
  cc_owner varchar(64) ,
  cc_number varchar(32) ,
  cc_expires varchar(4) ,
  last_modified datetime ,
  date_purchased datetime ,
  orders_status int(5) not null ,
  orders_date_finished datetime ,
  currency char(3) ,
  currency_value decimal(14,6) ,
  PRIMARY KEY (orders_id)
);

insert into orders (orders_id, customers_id, customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, last_modified, date_purchased, orders_status, orders_date_finished, currency, currency_value) values ('1', '2', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '34563456', 'gilliland@hostingwell.com', '1', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '1', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '1', 'Credit Card', 'Visa', 'Rob Gilliland', '4111111111111111', '0415', NULL, '2008-03-19 16:54:55', '1', NULL, 'AUD', '1.000000');
insert into orders (orders_id, customers_id, customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, last_modified, date_purchased, orders_status, orders_date_finished, currency, currency_value) values ('2', '2', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '34563456', 'gilliland@hostingwell.com', '1', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '1', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '1', 'Check/Money Order', '', '', '', '', NULL, '2008-03-24 02:32:20', '1', NULL, 'AUD', '1.000000');
insert into orders (orders_id, customers_id, customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, last_modified, date_purchased, orders_status, orders_date_finished, currency, currency_value) values ('3', '2', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '34563456', 'gilliland@hostingwell.com', '1', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '1', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '1', 'Check/Money Order', '', '', '', '', NULL, '2008-04-07 21:42:10', '1', NULL, 'AUD', '1.000000');
insert into orders (orders_id, customers_id, customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, last_modified, date_purchased, orders_status, orders_date_finished, currency, currency_value) values ('4', '2', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '34563456', 'gilliland@hostingwell.com', '1', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '1', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '1', 'Check/Money Order', '', '', '', '', NULL, '2008-04-22 23:56:44', '1', NULL, 'AUD', '1.000000');
insert into orders (orders_id, customers_id, customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, last_modified, date_purchased, orders_status, orders_date_finished, currency, currency_value) values ('5', '2', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '34563456', 'gilliland@hostingwell.com', '1', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '1', 'Rob Gilliland', 'Easyeditors', '88 Steen St', 'Steen', 'Steen', '8889', 'New South Wales', 'Australia', '1', 'Cash on Delivery', '', '', '', '', NULL, '2008-05-06 00:21:53', '1', NULL, 'AUD', '1.000000');
drop table if exists orders_products;
create table orders_products (
  orders_products_id int(11) not null auto_increment,
  orders_id int(11) not null ,
  products_id int(11) not null ,
  products_model varchar(12) ,
  products_name varchar(64) not null ,
  products_price decimal(15,4) not null ,
  final_price decimal(15,4) not null ,
  products_tax decimal(7,4) not null ,
  products_quantity int(2) not null ,
  PRIMARY KEY (orders_products_id)
);

insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('1', '1', '28', '', 'Ageless Facelift Pack', '297.0000', '297.0000', '10.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('2', '2', '29', '', 'Frangipani Stickers', '15.0000', '40.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('3', '2', '29', '', 'Frangipani Stickers', '15.0000', '90.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('4', '2', '30', '', 'Screen Saver', '10.0000', '15.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('5', '2', '35', '', 'BB White', '49.0000', '49.0000', '0.0000', '2');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('6', '3', '29', '', 'Frangipani Stickers', '15.0000', '63.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('7', '4', '40', 'DWEV', 'Dwarf Evergreen', '120.0000', '120.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('8', '4', '38', 'DWDC', 'Dwarf Deciduous', '99.0000', '198.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('9', '4', '29', '', 'Frangipani Stickers', '15.0000', '25.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('10', '5', '29', '', 'Frangipani Stickers', '15.0000', '15.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('11', '5', '36', '', 'Daisy Wilcox', '99.0000', '99.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('12', '5', '30', '', 'Screen Saver', '10.0000', '10.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('13', '5', '34', '', 'Bali Whirl', '15.0000', '15.0000', '0.0000', '2');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('14', '5', '32', '', 'Growing Plumeria in Hawaii', '44.9500', '44.9500', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('15', '5', '38', 'DWDC', 'Dwarf Deciduous', '99.0000', '99.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('16', '5', '41', 'AUGR', 'Aussie Gold Rush', '15.0000', '15.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('17', '5', '65', 'YBPK', 'You Beaut Pink', '29.0000', '29.0000', '0.0000', '1');
insert into orders_products (orders_products_id, orders_id, products_id, products_model, products_name, products_price, final_price, products_tax, products_quantity) values ('18', '5', '40', 'DWEV', 'Dwarf Evergreen', '120.0000', '240.0000', '0.0000', '1');
drop table if exists orders_products_attributes;
create table orders_products_attributes (
  orders_products_attributes_id int(11) not null auto_increment,
  orders_id int(11) not null ,
  orders_products_id int(11) not null ,
  products_options varchar(32) not null ,
  products_options_values varchar(32) not null ,
  options_values_price decimal(15,4) not null ,
  price_prefix char(1) not null ,
  PRIMARY KEY (orders_products_attributes_id)
);

insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('1', '2', '2', 'Model', 'Sticker 5', '0.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('2', '2', '2', 'Quantity', '4', '25.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('3', '2', '3', 'Model', 'Sticker 8', '0.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('4', '2', '3', 'Quantity', '10', '75.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('5', '2', '4', 'Version', 'CD-Posted', '5.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('6', '3', '6', 'Quantity', '7', '48.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('7', '3', '6', 'Model', 'Sticker 3', '0.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('8', '4', '7', 'Size', 'Small', '0.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('9', '4', '8', 'Size', 'Medium', '99.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('10', '4', '9', 'Quantity', '2', '10.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('11', '4', '9', 'Model', 'Sticker 1', '0.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('12', '5', '10', 'Quantity', '1', '0.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('13', '5', '10', 'Model', 'Sticker 1', '0.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('14', '5', '12', 'Version', 'Download: Windows - English', '0.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('15', '5', '15', 'Size', 'Small', '0.0000', '+');
insert into orders_products_attributes (orders_products_attributes_id, orders_id, orders_products_id, products_options, products_options_values, options_values_price, price_prefix) values ('16', '5', '18', 'Size', 'Medium', '120.0000', '+');
drop table if exists orders_products_download;
create table orders_products_download (
  orders_products_download_id int(11) not null auto_increment,
  orders_id int(11) default '0' not null ,
  orders_products_id int(11) default '0' not null ,
  orders_products_filename varchar(255) not null ,
  download_maxdays int(2) default '0' not null ,
  download_count int(2) default '0' not null ,
  PRIMARY KEY (orders_products_download_id)
);

drop table if exists orders_status;
create table orders_status (
  orders_status_id int(11) default '0' not null ,
  language_id int(11) default '1' not null ,
  orders_status_name varchar(32) not null ,
  PRIMARY KEY (orders_status_id, language_id),
  KEY idx_orders_status_name (orders_status_name)
);

insert into orders_status (orders_status_id, language_id, orders_status_name) values ('1', '1', 'Pending');
insert into orders_status (orders_status_id, language_id, orders_status_name) values ('2', '1', 'Processing');
insert into orders_status (orders_status_id, language_id, orders_status_name) values ('3', '1', 'Delivered');
drop table if exists orders_status_history;
create table orders_status_history (
  orders_status_history_id int(11) not null auto_increment,
  orders_id int(11) not null ,
  orders_status_id int(5) not null ,
  date_added datetime not null ,
  customer_notified int(1) default '0' ,
  comments text ,
  PRIMARY KEY (orders_status_history_id)
);

insert into orders_status_history (orders_status_history_id, orders_id, orders_status_id, date_added, customer_notified, comments) values ('1', '1', '1', '2008-03-19 16:54:55', '1', '');
insert into orders_status_history (orders_status_history_id, orders_id, orders_status_id, date_added, customer_notified, comments) values ('2', '2', '1', '2008-03-24 02:32:20', '1', '');
insert into orders_status_history (orders_status_history_id, orders_id, orders_status_id, date_added, customer_notified, comments) values ('3', '3', '1', '2008-04-07 21:42:10', '1', '');
insert into orders_status_history (orders_status_history_id, orders_id, orders_status_id, date_added, customer_notified, comments) values ('4', '4', '1', '2008-04-22 23:56:44', '1', 'fgjfgj fhj jh');
insert into orders_status_history (orders_status_history_id, orders_id, orders_status_id, date_added, customer_notified, comments) values ('5', '5', '1', '2008-05-06 00:21:53', '1', '');
drop table if exists orders_total;
create table orders_total (
  orders_total_id int(10) unsigned not null auto_increment,
  orders_id int(11) not null ,
  title varchar(255) not null ,
  text varchar(255) not null ,
  value decimal(15,4) not null ,
  class varchar(32) not null ,
  sort_order int(11) not null ,
  PRIMARY KEY (orders_total_id),
  KEY idx_orders_total_orders_id (orders_id)
);

insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('1', '1', 'Sub-Total:', '$297', '297.0000', 'ot_subtotal', '1');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('2', '1', 'GST TAX 10.0%:', '$30', '29.7000', 'ot_tax', '3');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('3', '1', 'Flat Rate (Best Way):', '$5', '5.0000', 'ot_shipping', '2');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('4', '1', 'Total:', '<b>$332</b>', '331.7000', 'ot_total', '4');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('5', '2', 'Sub-Total:', '$243', '243.0000', 'ot_subtotal', '1');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('6', '2', 'Flat Rate (Best Way):', '$5', '5.0000', 'ot_shipping', '2');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('7', '2', 'Total:', '<b>$248</b>', '248.0000', 'ot_total', '4');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('8', '3', 'Sub-Total:', '$63', '63.0000', 'ot_subtotal', '1');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('9', '3', 'Flat Rate (Best Way):', '$5', '5.0000', 'ot_shipping', '2');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('10', '3', 'Total:', '<b>$68</b>', '68.0000', 'ot_total', '4');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('11', '4', 'Sub-Total:', '$343', '343.0000', 'ot_subtotal', '1');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('12', '4', 'Flat Rate (Best Way):', '$5', '5.0000', 'ot_shipping', '2');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('13', '4', 'Total:', '<b>$348</b>', '348.0000', 'ot_total', '4');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('14', '5', 'Sub-Total:', '$582', '582.0000', 'ot_subtotal', '1');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('15', '5', 'Flat Rate (Charge) (Best Way (UPS or Post Office)):', '$40', '40.0000', 'ot_shipping', '2');
insert into orders_total (orders_total_id, orders_id, title, text, value, class, sort_order) values ('16', '5', 'Total:', '<b>$622</b>', '622.0000', 'ot_total', '4');
drop table if exists products;
create table products (
  products_id int(11) not null auto_increment,
  products_quantity int(4) not null ,
  products_model varchar(12) ,
  products_image varchar(64) ,
  products_price decimal(15,4) not null ,
  products_date_added datetime not null ,
  products_last_modified datetime ,
  products_date_available datetime ,
  products_weight decimal(5,2) not null ,
  products_status tinyint(1) not null ,
  products_tax_class_id int(11) not null ,
  manufacturers_id int(11) ,
  products_ordered int(11) default '0' not null ,
  PRIMARY KEY (products_id),
  KEY idx_products_date_added (products_date_added)
);

insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('29', '95', '', 'sticker-1.jpg', '15.0000', '2008-03-23 22:51:51', '2008-03-23 22:59:33', NULL, '100.00', '1', '0', '0', '5');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('30', '498', '', 'flick.gif', '10.0000', '2008-03-23 23:29:46', NULL, NULL, '0.00', '1', '0', '0', '2');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('31', '100', '', 'plumeria_book_1.jpg', '54.9500', '2008-03-23 23:56:55', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('32', '99', '', 'plumeria_book_2.jpg', '44.9500', '2008-03-23 23:58:40', NULL, NULL, '0.00', '1', '0', '0', '1');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('33', '1000', '', 'landscaping-001lge.jpg', '0.0000', '2008-03-24 00:07:52', '2008-05-27 21:28:01', NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('34', '98', '', 'BALW(1).jpg', '15.0000', '2008-03-24 00:33:01', '2008-05-26 20:34:01', NULL, '500.00', '1', '0', '0', '2');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('35', '98', '', 'BBWH(1).jpg', '49.0000', '2008-03-24 01:44:50', NULL, NULL, '500.00', '1', '0', '0', '2');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('36', '99', '', 'DWCX(1).jpg', '99.0000', '2008-03-24 01:47:28', NULL, NULL, '500.00', '1', '0', '0', '1');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('37', '100', '', 'images.jpg', '0.0000', '2008-03-24 02:03:42', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('38', '998', 'DWDC', 'DWDC.jpg', '99.0000', '2008-04-22 22:38:08', '2008-04-22 23:24:34', NULL, '0.00', '1', '0', '0', '2');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('39', '100', '', 'DWDC.jpg', '60.0000', '2008-04-22 22:57:26', '2008-07-07 20:50:12', NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('40', '998', 'DWEV', 'DWEV.jpg', '120.0000', '2008-04-22 23:43:17', '2008-04-22 23:44:28', NULL, '0.00', '1', '0', '0', '2');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('41', '1999', 'AUGR', 'AUGR.jpg', '15.0000', '2008-05-01 01:26:08', NULL, NULL, '0.00', '1', '0', '0', '1');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('42', '2000', 'BRMM', 'BRMM.jpg', '9.0000', '2008-05-01 02:17:10', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('43', '2000', 'CLPK', 'CLPK.jpg', '49.0000', '2008-05-01 02:18:38', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('44', '2000', 'DSPK', 'DSPK.jpg', '15.0000', '2008-05-01 02:19:58', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('45', '2000', 'DNCK', 'DNCK.jpg', '45.0000', '2008-05-01 02:21:23', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('46', '2000', 'DWSG', 'DWSG.jpg', '79.0000', '2008-05-01 02:22:55', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('47', '2000', 'WMDW', 'WMDW.jpg', '199.0000', '2008-05-01 02:24:29', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('48', '2000', 'HTPK', 'HTPK.jpg', '29.0000', '2008-05-01 02:26:33', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('49', '2000', 'JLPK', 'JLPK.jpg', '19.0000', '2008-05-01 02:28:10', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('50', '2000', 'KMOR', 'KMOR.jpg', '149.0000', '2008-05-01 02:29:26', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('51', '2000', 'KIMR', 'KIMR.jpg', '49.0000', '2008-05-01 02:30:30', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('52', '2000', 'KIMO', 'KIMO.jpg', '99.0000', '2008-05-01 02:31:52', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('53', '2000', 'KRDN', 'KRDN.jpg', '29.0000', '2008-05-01 02:33:07', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('54', '2000', 'KMPK', 'KMPK.jpg', '25.0000', '2008-05-01 02:34:10', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('55', '2000', 'LDPK', 'LDPK.jpg', '19.0000', '2008-05-01 02:35:31', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('56', '2000', 'MDPK', 'MDPK.jpg', '35.0000', '2008-05-01 02:36:43', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('57', '2000', 'MMPK', 'MMPK.jpg', '19.0000', '2008-05-01 02:37:56', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('58', '2000', 'MPKF', 'MPKF.jpg', '35.0000', '2008-05-01 02:39:17', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('59', '2000', 'PKCH', 'PKCH.jpg', '29.0000', '2008-05-01 02:40:51', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('60', '2000', 'PKGW', 'PKGW.jpg', '19.0000', '2008-05-01 02:42:01', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('61', '2000', 'PKKK', 'PKKK.jpg', '29.0000', '2008-05-01 03:12:09', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('62', '2000', 'PLPK', 'PLPK.jpg', '35.0000', '2008-05-01 03:13:55', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('63', '2000', 'RAPK', 'RAPK.jpg', '19.0000', '2008-05-01 03:15:14', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('64', '2000', 'STNC', 'STNC.jpg', '19.0000', '2008-05-01 03:17:04', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('65', '1999', 'YBPK', 'YBPK.jpg', '29.0000', '2008-05-01 03:18:13', NULL, NULL, '0.00', '1', '0', '0', '1');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('66', '2000', 'FVNE', 'FVNE.jpg', '25.0000', '2008-05-01 04:04:35', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('67', '2000', 'JHAR', 'JHAR.jpg', '29.0000', '2008-05-01 04:06:12', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('68', '2000', 'JTPT', 'JTPT.jpg', '39.0000', '2008-05-01 04:07:31', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('69', '2000', 'LTBY', 'LTBY.jpg', '25.0000', '2008-05-01 04:08:44', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('70', '2000', 'PLOB', 'PLOB.jpg', '19.0000', '2008-05-01 04:10:08', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('71', '2000', 'PKLP', 'PKLP.jpg', '19.0000', '2008-05-01 04:11:19', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('72', '2000', 'PUDP', 'PUDP.jpg', '29.0000', '2008-05-01 04:12:42', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('73', '2000', 'PUDK', 'PUDK.jpg', '29.0000', '2008-05-01 04:13:49', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('74', '2000', 'PUDC', 'PUDC.jpg', '15.0000', '2008-05-01 04:14:55', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('75', '2000', 'RAWT', 'RAWT.jpg', '19.0000', '2008-05-01 04:16:16', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('76', '2000', 'SAMF', 'SAMF.jpg', '35.0000', '2008-05-01 04:17:36', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('77', '2000', 'SFOL', 'SFOL.jpg', '49.0000', '2008-05-01 04:20:02', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('78', '2000', 'SNWW', 'SNWW.jpg', '19.0000', '2008-05-01 04:21:24', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('79', '2000', 'STEN', 'STEN.jpg', '49.0000', '2008-05-01 04:22:30', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('80', '2000', 'SBWH', 'SBWH.jpg', '10.0000', '2008-05-01 04:23:43', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('81', '2000', 'BLKR', 'BLKR.jpg', '35.0000', '2008-05-01 04:27:05', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('82', '2000', 'BLDR', 'BLDR.jpg', '29.0000', '2008-05-01 04:28:18', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('83', '2000', 'FSTM', 'FSTM.jpg', '149.0000', '2008-05-01 04:29:28', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('84', '2000', 'CPPK', 'CPPK.jpg', '79.0000', '2008-05-01 04:30:39', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('85', '2000', 'DONA', 'DONA.jpg', '69.0000', '2008-05-01 04:32:16', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('86', '2000', 'IBRY', 'IBRY.jpg', '29.0000', '2008-05-01 04:33:41', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('87', '2000', 'KWIL', 'KWIL.jpg', '49.0000', '2008-05-02 00:21:56', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('88', '2000', 'AUGR', 'AUGR.jpg', '35.0000', '2008-05-02 00:23:10', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('89', '2000', 'OZRP', 'OZRP.jpg', '49.0000', '2008-05-02 00:25:17', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('90', '2000', 'SPRT', 'SPRT.jpg', '45.0000', '2008-05-02 00:26:31', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('91', '2000', 'SUVR', 'SUVR.jpg', '39.0000', '2008-05-02 00:29:12', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('92', '2000', 'AUDY', 'AUDY.jpg', '15.0000', '2008-05-02 00:30:37', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('93', '2000', 'AUGL', 'AUGL.jpg', '19.0000', '2008-05-02 00:45:10', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('94', '2000', 'BOWY', 'BOWY.jpg', '23.0000', '2008-05-02 00:46:18', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('95', '2000', 'CLDN', 'CLDN.jpg', '15.0000', '2008-05-02 00:47:14', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('96', '2000', 'CMOR', 'CMOR.jpg', '45.0000', '2008-05-02 00:48:14', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('97', '2000', 'HEID', 'HEID.jpg', '29.0000', '2008-05-02 00:49:19', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('98', '2000', 'LMSH', 'LMSH.jpg', '29.0000', '2008-05-02 00:50:22', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('99', '2000', 'LMSF', 'LMSF.jpg', '25.0000', '2008-05-02 00:51:35', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('100', '2000', 'PVPA', 'PVPA.jpg', '29.0000', '2008-05-02 00:53:05', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('101', '2000', 'QDNY', 'QDNY.jpg', '29.0000', '2008-05-02 00:54:25', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('102', '2000', 'VSHU', 'VSHU.jpg', '199.0000', '2008-05-02 00:55:46', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('103', '2000', 'BURB', 'BURB.jpg', '59.0000', '2008-05-02 01:04:41', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('104', '2000', 'CHCH', 'CHCH.jpg', '150.0000', '2008-05-02 01:05:50', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('105', '2000', 'DNBL', 'DNBL.jpg', '29.0000', '2008-05-02 01:06:53', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('106', '2000', 'DJCF', 'DJCF.jpg', '29.0000', '2008-05-02 01:08:18', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('107', '2000', 'ESPN', 'ESPN.jpg', '29.0000', '2008-05-02 01:09:54', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('108', '2000', 'FRSD', 'FRSD.jpg', '15.0000', '2008-05-02 01:11:21', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('109', '2000', 'GCBL', 'GCBL.jpg', '19.0000', '2008-05-02 01:12:27', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('110', '2000', 'GCCC', 'GCCC.jpg', '35.0000', '2008-05-02 01:13:43', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('111', '2000', 'INRB', 'INRB.jpg', '29.0000', '2008-05-02 01:15:06', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('112', '2000', 'LERB', 'LERB.jpg', '59.0000', '2008-05-02 01:16:21', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('113', '2000', 'LLCL', 'LLCL.jpg', '250.0000', '2008-05-02 01:17:46', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('114', '2000', 'LLMT', 'LLMT.jpg', '35.0000', '2008-05-02 01:18:58', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('115', '2000', 'LORT', 'LORT.jpg', '29.0000', '2008-05-02 01:20:01', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('116', '2000', 'MDPO', 'MDPO.jpg', '150.0000', '2008-05-02 01:21:21', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('117', '2000', 'MKRB', 'MKRB.jpg', '150.0000', '2008-05-02 01:22:30', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('118', '2000', 'NBRB', 'NBRB.jpg', '29.0000', '2008-05-02 01:23:28', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('119', '2000', 'PUDV', 'PUDV.jpg', '29.0000', '2008-05-02 01:24:43', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('120', '2000', 'PUKH', 'PUKH.jpg', '39.0000', '2008-05-02 01:25:49', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('121', '2000', 'RDTR', 'RDTR.jpg', '49.0000', '2008-05-02 01:27:14', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('122', '2000', 'SHAR', 'SHAR.jpg', '29.0000', '2008-05-02 01:28:35', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('123', '2000', 'SRIP', 'SRIP.jpg', '25.0000', '2008-05-02 01:29:37', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('124', '2000', 'SUNR', 'SUNR.jpg', '19.0000', '2008-05-02 01:30:52', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('125', '2000', 'TWIL', 'TWIL.jpg', '49.0000', '2008-05-02 01:31:49', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('126', '2000', 'TRLT', 'TRLT.jpg', '19.0000', '2008-05-02 01:32:58', NULL, NULL, '0.00', '1', '0', '0', '0');
insert into products (products_id, products_quantity, products_model, products_image, products_price, products_date_added, products_last_modified, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id, products_ordered) values ('127', '2000', 'WHSH', 'WHSH.jpg', '39.0000', '2008-05-02 01:34:01', NULL, NULL, '0.00', '1', '0', '0', '0');
drop table if exists products_attributes;
create table products_attributes (
  products_attributes_id int(11) not null auto_increment,
  products_id int(11) not null ,
  options_id int(11) not null ,
  options_values_id int(11) not null ,
  options_values_price decimal(15,4) not null ,
  price_prefix char(1) not null ,
  PRIMARY KEY (products_attributes_id)
);

insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('28', '29', '3', '8', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('29', '29', '3', '6', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('30', '29', '3', '7', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('31', '29', '3', '9', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('32', '29', '3', '5', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('33', '29', '3', '14', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('34', '29', '3', '15', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('35', '29', '3', '16', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('36', '29', '6', '17', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('37', '29', '6', '18', '10.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('38', '29', '6', '19', '18.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('39', '29', '6', '20', '25.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('40', '29', '6', '21', '30.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('41', '29', '6', '22', '39.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('42', '29', '6', '23', '48.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('43', '29', '6', '24', '57.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('44', '29', '6', '25', '66.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('45', '29', '6', '26', '75.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('46', '30', '5', '10', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('47', '30', '5', '27', '5.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('48', '38', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('54', '40', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('55', '40', '2', '29', '120.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('56', '40', '2', '30', '360.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('52', '38', '2', '29', '99.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('53', '38', '2', '30', '297.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('210', '93', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('58', '92', '2', '29', '15.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('59', '92', '2', '30', '45.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('60', '34', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('61', '34', '2', '29', '15.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('62', '34', '2', '30', '45.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('63', '35', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('64', '35', '2', '29', '49.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('65', '35', '2', '30', '147.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('66', '36', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('67', '36', '2', '29', '99.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('68', '36', '2', '30', '297.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('69', '66', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('70', '66', '2', '29', '25.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('71', '66', '2', '30', '75.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('72', '67', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('73', '67', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('74', '67', '2', '29', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('75', '68', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('76', '68', '2', '29', '39.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('77', '68', '2', '30', '117.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('78', '69', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('79', '69', '2', '29', '25.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('80', '69', '2', '30', '75.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('81', '70', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('82', '70', '2', '29', '19.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('83', '70', '2', '30', '57.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('84', '71', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('85', '71', '2', '29', '19.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('86', '71', '2', '30', '57.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('87', '72', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('88', '72', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('89', '72', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('90', '73', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('91', '73', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('92', '73', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('93', '74', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('94', '74', '2', '29', '15.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('95', '74', '2', '30', '45.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('96', '75', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('97', '75', '2', '29', '19.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('98', '75', '2', '30', '57.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('99', '76', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('100', '76', '2', '29', '35.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('101', '76', '2', '30', '105.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('102', '77', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('103', '77', '2', '29', '49.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('104', '77', '2', '30', '147.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('105', '78', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('106', '78', '2', '29', '19.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('107', '78', '2', '30', '57.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('108', '79', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('109', '79', '2', '29', '49.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('110', '79', '2', '30', '147.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('111', '80', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('112', '80', '2', '29', '10.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('113', '80', '2', '30', '30.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('114', '41', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('115', '41', '2', '29', '15.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('116', '41', '2', '30', '45.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('117', '42', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('118', '42', '2', '29', '9.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('119', '42', '2', '30', '27.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('120', '43', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('121', '43', '2', '29', '49.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('122', '43', '2', '30', '147.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('123', '44', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('124', '44', '2', '29', '15.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('125', '44', '2', '30', '45.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('126', '45', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('127', '45', '2', '29', '45.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('128', '45', '2', '30', '135.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('129', '46', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('130', '46', '2', '29', '79.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('131', '46', '2', '30', '237.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('132', '47', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('133', '47', '2', '29', '199.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('134', '47', '2', '30', '597.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('135', '48', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('136', '48', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('137', '48', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('138', '49', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('139', '49', '2', '29', '19.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('140', '49', '2', '30', '57.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('141', '50', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('142', '50', '2', '29', '149.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('143', '50', '2', '30', '447.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('144', '51', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('145', '51', '2', '29', '49.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('146', '51', '2', '30', '147.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('147', '52', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('148', '52', '2', '29', '99.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('149', '52', '2', '30', '297.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('150', '53', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('151', '53', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('152', '53', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('153', '54', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('154', '54', '2', '29', '25.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('155', '54', '2', '30', '75.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('156', '55', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('157', '55', '2', '29', '19.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('158', '55', '2', '30', '57.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('159', '56', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('160', '56', '2', '29', '35.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('161', '56', '2', '30', '105.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('162', '57', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('163', '57', '2', '29', '19.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('164', '57', '2', '30', '57.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('165', '58', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('166', '58', '2', '29', '35.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('167', '58', '2', '30', '105.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('168', '59', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('169', '59', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('170', '59', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('171', '60', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('172', '60', '2', '29', '19.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('173', '60', '2', '30', '57.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('174', '81', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('175', '81', '2', '29', '35.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('176', '81', '2', '30', '105.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('177', '82', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('178', '82', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('179', '82', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('180', '83', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('181', '83', '2', '29', '149.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('182', '83', '2', '30', '447.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('183', '84', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('184', '84', '2', '29', '79.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('185', '84', '2', '30', '237.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('186', '85', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('187', '85', '2', '29', '69.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('188', '85', '2', '30', '207.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('189', '86', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('190', '86', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('191', '86', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('192', '87', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('193', '87', '2', '29', '49.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('194', '87', '2', '30', '147.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('195', '88', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('196', '88', '2', '29', '35.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('197', '88', '2', '30', '105.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('198', '89', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('199', '89', '2', '29', '49.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('200', '89', '2', '30', '147.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('201', '90', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('202', '90', '2', '29', '45.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('203', '90', '2', '30', '135.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('204', '91', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('205', '91', '2', '29', '39.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('206', '91', '2', '30', '117.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('207', '92', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('211', '93', '2', '29', '19.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('212', '93', '2', '30', '57.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('213', '94', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('214', '94', '2', '29', '23.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('215', '94', '2', '30', '69.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('216', '95', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('217', '95', '2', '29', '15.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('218', '95', '2', '30', '45.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('219', '96', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('220', '96', '2', '29', '45.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('221', '96', '2', '30', '135.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('222', '97', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('223', '97', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('224', '97', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('225', '98', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('226', '98', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('227', '98', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('228', '99', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('229', '99', '2', '29', '25.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('230', '99', '2', '30', '75.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('231', '100', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('232', '100', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('233', '100', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('234', '101', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('235', '101', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('236', '101', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('237', '102', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('238', '102', '2', '29', '199.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('239', '102', '2', '30', '597.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('240', '103', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('241', '103', '2', '29', '59.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('242', '103', '2', '30', '177.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('243', '104', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('244', '104', '2', '29', '150.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('245', '104', '2', '30', '450.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('246', '105', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('247', '105', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('248', '105', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('249', '106', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('250', '106', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('251', '106', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('252', '107', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('253', '107', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('254', '107', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('255', '108', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('256', '108', '2', '29', '15.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('257', '108', '2', '30', '45.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('258', '109', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('259', '109', '2', '29', '19.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('260', '109', '2', '30', '57.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('261', '110', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('262', '110', '2', '29', '35.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('263', '110', '2', '30', '105.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('264', '111', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('265', '111', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('266', '111', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('267', '112', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('268', '112', '2', '29', '59.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('269', '112', '2', '30', '177.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('270', '113', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('271', '113', '2', '29', '250.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('272', '113', '2', '30', '750.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('273', '114', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('274', '114', '2', '29', '35.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('275', '114', '2', '30', '105.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('276', '115', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('277', '115', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('278', '115', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('279', '116', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('280', '116', '2', '29', '150.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('281', '116', '2', '30', '450.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('282', '117', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('283', '117', '2', '29', '150.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('284', '117', '2', '30', '450.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('285', '118', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('286', '118', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('287', '118', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('288', '119', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('289', '119', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('290', '119', '2', '30', '87.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('291', '120', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('292', '120', '2', '29', '39.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('293', '120', '2', '30', '117.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('294', '121', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('295', '121', '2', '29', '49.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('296', '121', '2', '30', '147.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('297', '122', '2', '28', '0.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('298', '122', '2', '29', '29.0000', '+');
insert into products_attributes (products_attributes_id, products_id, options_id, options_values_id, options_values_price, price_prefix) values ('299', '122', '2', '30', '87.0000', '+');
drop table if exists products_attributes_download;
create table products_attributes_download (
  products_attributes_id int(11) not null ,
  products_attributes_filename varchar(255) not null ,
  products_attributes_maxdays int(2) default '0' ,
  products_attributes_maxcount int(2) default '0' ,
  PRIMARY KEY (products_attributes_id)
);

insert into products_attributes_download (products_attributes_id, products_attributes_filename, products_attributes_maxdays, products_attributes_maxcount) values ('26', 'unreal.zip', '7', '3');
drop table if exists products_description;
create table products_description (
  products_id int(11) not null auto_increment,
  language_id int(11) default '1' not null ,
  products_name varchar(64) not null ,
  products_description text ,
  products_url varchar(255) ,
  products_viewed int(5) default '0' ,
  PRIMARY KEY (products_id, language_id),
  KEY products_name (products_name)
);

insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('29', '1', 'Frangipani Stickers', '<table class=\"text\" cellspacing=\"0\" cellpadding=\"5\" width=\"100%\" class=\"text\"><tbody><tr><td colspan=\"4\"><p class=\"bodytext\" class=\"bodytext\"><strong>FRANGIPANI STICKERS</strong></p><p class=\"bodytext\" class=\"bodytext\">These stickers are simply stunning. Made from waterproof Orajet Digital Printing Media, they have a 5 year guarantee of not fading. Great for the bathroom, cars, windows, mirrors, fridges, surfboards + more. Images captured from actual Frangipanis, the detail will certainly impress you. <br />Professionally printed and pre-cut so all you need to do is peel them off and place them on your desired surface. Just like all of our products, we know you will be very happy with your purchase. </p></td></tr><tr><td colspan=\"4\"><table style=\"\" cellspacing=\"0\" cellpadding=\"0\" width=\"500\" style=\"WIDTH: 500px; HEIGHT: 162px\"><tbody><tr><td class=\"bodytext\" colspan=\"3\" class=\"bodytext\"><font color=\"#ff0000\"><strong>QTY BASED PRICING APPLY</strong></font></td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><div align=\"center\"><strong>QTY</strong></div></td><td class=\"bodytext\" class=\"bodytext\"><strong>PRICE</strong></td><td class=\"bodytext\" class=\"bodytext\"><div align=\"center\"><font size=\"-2\">BUY BULK &amp; SAVE $$</font></div></td></tr><tr><td class=\"bodytext\" width=\"31%\" class=\"bodytext\"><div align=\"center\"><font size=\"-2\">1</font></div></td><td width=\"25%\"><font size=\"-2\">$15.00</font></td><td class=\"bodytext\" width=\"44%\" class=\"bodytext\"><font size=\"-2\">&nbsp;</font></td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><div align=\"center\"><font size=\"-2\">2</font></div></td><td><font size=\"-2\">$25.00</font></td><td class=\"bodytext\" class=\"bodytext\"><font size=\"-2\">($12.50 each save $5.00)</font></td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><div align=\"center\"><font size=\"-2\">3</font></div></td><td><font size=\"-2\">$33.00</font></td><td class=\"bodytext\" class=\"bodytext\"><font size=\"-2\">($11.00 each save $12.00)</font></td></tr><tr><td class=\"bodytext\" height=\"12\" class=\"bodytext\"><div align=\"center\"><font size=\"-2\">4</font></div></td><td><font size=\"-2\">$40.00</font></td><td class=\"bodytext\" class=\"bodytext\"><font size=\"-2\">($10.00 each save $20.00)</font></td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><div align=\"center\"><font size=\"-2\">5 or more</font></div></td><td><font size=\"-2\">$9.00 each</font></td><td class=\"bodytext\" class=\"bodytext\"><font size=\"-2\">($9.00 each save $30.00)</font></td></tr></tbody></table></td></tr></tbody></table><img src=\"/store/files/sticker_2.jpg\" />', '', '15');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('30', '1', 'Screen Saver', '<p class=\"bodytext\" align=\"left\" class=\"bodytext\"><font size=\"-2\">A fabulous collection containing over 100 breathtaking Frangipani varieties...all from Frangipani DJs Way - something to certainly drool over! We must warn you, this screen saver is captivating, totally addictive - you will be amazed at the diversity and stunning beauty of this plant.<br />Hi Resolution images. Enjoy!</font></p><p class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#ff0000\" size=\"-2\"><strong>Available on CD or download. </strong></font></p><p class=\"bodytext\" class=\"bodytext\"><font size=\"-2\">System Requirements: Windows 9x / 2000 / XP<br />Memory: 32MB RAM<br />File Size: 8.72MB</font></p>', '', '7');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('31', '1', 'The Handbook on Plumeria Culture 4th Ed', '<strong>The Handbook on Plumeria Culture 4th Ed </strong>- Richard and Mary Helen Eggenberger <br />An excellent handbook that tells you everything you want to know about plumerias. Has chapters on nomenclature, historical data, major cultivars, Moragne hybrids, plumeria culture and more. Excellent descriptions and colour photos of most popular commercial plumeria varieties. Plus a good glossaryand bibliography. Written by two of the most knowledgeable experts on plumeria living today...<br /><font color=\"#ff0000\">Price: $39.95 + $15.00</font> Express Post', '', '5');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('32', '1', 'Growing Plumeria in Hawaii', '<strong>Growing Plumeria in Hawaii</strong> - Jim Little<br />Flora enthusiasts will find a plethora of information here about different types of plumeria, asexual propagation, rooting and media structures, cultivation, pest and weed control hybridization, cross-pollination, collecting and more. There are also tips on taking home plumeria cuttings plus much more....<br /><font color=\"#ff0000\">Price: $29.95 + $15.00</font> Express Post', '', '8');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('33', '1', 'Landscaping', '<table style=\"\" cellspacing=\"0\" cellpadding=\"0\" width=\"658\" align=\"center\" style=\"WIDTH: 658px; HEIGHT: 532px\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><p><font size=\"4\"></font></p><p><font size=\"4\">Landscapers Delight </font></p></td></tr><tr><td><p class=\"bodytext\" class=\"bodytext\">We have a large range of landscaping pieces available from 45lt bags up to 200lt bags. The range includes Sunburst White, Apricot Tri colour, Bowen Yellow, Sharnas Rose, Sorbet Ripple, Brisbane Mary Mac, Plumeria obtusa, Blood Red, Hot Pink plus many more - all in beautiful condition.<br />As each tree is treated as an individual, prices depend on variety, structure and shape more than pot size. These are available for delivery Australia wide - we will even provide assistance in planting if required.</p><p><span class=\"bodytext\" class=\"bodytext\">Please&nbsp;<font color=\"#0000ff\"><a href=\"/store/contact_us.php\"><font color=\"#0000ff\">contact </font>us</a></font> with your requirements, variety, colour, size etc and we will send you photos of what we have that will best fit your needs. Alternatively, if you live nearby you can inspect them for yourself - please call us first so we can organise someone to show you around.</span><br /></p></td></tr><tr><td><table style=\"\" cellspacing=\"0\" cellpadding=\"0\" width=\"327\" align=\"center\" style=\"WIDTH: 327px; HEIGHT: 162px\"><tbody><tr><td class=\"bodytext\" colspan=\"4\" height=\"27\" class=\"bodytext\"><strong><em></em></strong></td></tr><tr><td width=\"24%\"><div align=\"center\"><img height=\"113\" src=\"http://www.djsway.com/images/landscaping/landscaping-001sml.jpg\" width=\"150\" border=\"1\" /></div></td><td width=\"24%\"><div align=\"center\"><img height=\"113\" src=\"http://www.djsway.com/images/landscaping/landscaping-005sml.jpg\" width=\"150\" border=\"1\" /></div></td><td width=\"26%\"><div align=\"center\"><a href=\"javascript:Start(\'images/landscaping/landscaping-007lge.jpg\',%20650,%20488)\" ;=\"\"></a></div></td><td width=\"26%\"><div align=\"center\"><a href=\"javascript:Start(\'images/landscaping/landscaping-008lge.jpg\',%20650,%20488)\" ;=\"\"></a></div></td></tr><tr class=\"bodytext\" class=\"bodytext\"><td><div align=\"center\">Evergreen Frangipani</div></td><td><div align=\"center\">Multi Colours</div></td><td><div align=\"center\"></div></td><td><div align=\"center\"></div></td></tr></tbody></table><table style=\"\" align=\"center\" border=\"0\" style=\"WIDTH: 326px; HEIGHT: 24px\"><tbody><tr><td><div align=\"center\"><img style=\"\" height=\"111\" src=\"http://www.djsway.com/images/landscaping/landscaping-007sml.jpg\" width=\"144\" border=\"1\" style=\"WIDTH: 144px; HEIGHT: 111px\" /></div><div align=\"center\"><div align=\"center\">3 Metre +</div></div></td><td><div align=\"center\"><img style=\"\" height=\"113\" src=\"http://www.djsway.com/images/landscaping/landscaping-008sml.jpg\" width=\"156\" border=\"1\" style=\"WIDTH: 156px; HEIGHT: 113px\" /></div><div align=\"center\"><div align=\"center\">Assorted</div></div></td></tr></tbody></table></td></tr></tbody></table>', '', '18');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('34', '1', 'Bali Whirl', '<p><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img style=\"\" height=\"138\" src=\"http://www.djsway.com/images/flower/BALW.jpg\" width=\"158\" border=\"1\" style=\"WIDTH: 158px; HEIGHT: 138px\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img style=\"\" height=\"138\" src=\"http://www.djsway.com/images/bunch/BALW.jpg\" width=\"164\" border=\"1\" style=\"WIDTH: 164px; HEIGHT: 138px\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img style=\"\" height=\"136\" src=\"http://www.djsway.com/images/tree/BALW.jpg\" width=\"158\" border=\"1\" style=\"WIDTH: 158px; HEIGHT: 136px\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">A fabulous double bloom blessed with a come-again scent that sends your senses straight to Balinese paradise. </td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">8 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Bali Whirl is a unusual double bloomed Frangipani that brings an exotic feel to its surroundings</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 20 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 40 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 30</td><td class=\"text\" class=\"text\">Width: 6</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr><tr><td class=\"text\" colspan=\"3\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"text\" class=\"text\"></td><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"text\" width=\"66%\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"90%\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><em></em></td></tr><tr><td class=\"text\" class=\"text\"><hr size=\"1\" /></td></tr><tr><td class=\"text\" valign=\"top\" height=\"45\" class=\"text\">Strong, robust type branches</td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></p>', '', '27');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('35', '1', 'BB White', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>BB White</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img height=\"164\" src=\"http://www.djsway.com/images/flower/BBWH.jpg\" width=\"185\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img style=\"\" height=\"165\" src=\"http://www.djsway.com/images/bunch/BBWH.jpg\" width=\"184\" border=\"1\" style=\"WIDTH: 184px; HEIGHT: 165px\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">She is big and proud as her size demands. Her yellow centre is dwarfed by her large white petals</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Her scent is reminiscent of freshly picked apples and the exotic scent of gardenias.....Just a heavenly frangipani</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">10 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">AKA Bloody Big White</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr><tr><td class=\"text\" colspan=\"3\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"text\" class=\"text\"></td><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"text\" width=\"66%\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"90%\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><table height=\"41\" cellspacing=\"0\" cellpadding=\"0\" width=\"450\" align=\"right\" border=\"1\"><tbody><tr><td width=\"73\" bgcolor=\"#990000\" height=\"21\"><div align=\"center\"><font face=\"Verdana,\" color=\"#ffffff\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Small</font></div></td><td width=\"73\" bgcolor=\"#990000\"><div align=\"center\"><font face=\"Verdana,\" color=\"#ffffff\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Med</font></div></td><td width=\"73\" bgcolor=\"#990000\"><div align=\"center\"><font face=\"Verdana,\" color=\"#ffffff\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Large</font></div></td><td valign=\"middle\" width=\"224\" bgcolor=\"#cccccc\" rowspan=\"2\"><table height=\"58\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td width=\"41%\"><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Available</font></div></td><td width=\"59%\"><em><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">&nbsp;- Plant is in stock</font></em></td></tr><tr><td height=\"17\"><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Available soon</font></div></td><td><em><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">&nbsp;- Maturing this season</font></em></td></tr><tr><td height=\"17\"><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Order</font></div></td><td><em><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">&nbsp;- Orders Only</font></em></td></tr></tbody></table></td></tr><tr><td height=\"14\"><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">available</font></div></td><td><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">available</font></div></td><td><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">available</font></div></td></tr></tbody></table></td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><em>Other Information</em></td></tr><tr><td class=\"text\" class=\"text\"><hr size=\"1\" /></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table>', '', '13');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('36', '1', 'Daisy Wilcox', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Daisy Wilcox</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img style=\"\" height=\"148\" src=\"http://www.djsway.com/images/flower/DWCX.jpg\" width=\"196\" border=\"1\" style=\"WIDTH: 196px; HEIGHT: 148px\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img style=\"\" height=\"147\" src=\"http://www.djsway.com/images/bunch/DWCX.jpg\" width=\"184\" border=\"1\" style=\"WIDTH: 184px; HEIGHT: 147px\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img style=\"\" height=\"152\" src=\"http://www.djsway.com/images/tree/DWCX.jpg\" width=\"111\" border=\"1\" style=\"WIDTH: 111px; HEIGHT: 152px\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Absolutely huge flower! sometimes larger than an extendend hand. A real gem just waiting to be picked.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Wicked wench, all big, blousy and bursting with a fragrance to match – and then some!</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">14 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Daisy Wilcox is one of the stand-out Frangipani we stock. The flowers really are breath-taking not for just their size but the shape as well...simply stunning. With flowers bigger than a bread and butter plate ... she will definately make you drool.</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 40 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 40 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 35</td><td class=\"text\" class=\"text\">Width: 10</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr><tr><td class=\"text\" colspan=\"3\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"text\" class=\"text\"></td><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"text\" width=\"66%\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"90%\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><table height=\"41\" cellspacing=\"0\" cellpadding=\"0\" width=\"450\" align=\"right\" border=\"1\"><tbody><tr><td width=\"73\" bgcolor=\"#990000\" height=\"21\"><div align=\"center\"><font face=\"Verdana,\" color=\"#ffffff\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Small</font></div></td><td width=\"73\" bgcolor=\"#990000\"><div align=\"center\"><font face=\"Verdana,\" color=\"#ffffff\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Med</font></div></td><td width=\"73\" bgcolor=\"#990000\"><div align=\"center\"><font face=\"Verdana,\" color=\"#ffffff\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Large</font></div></td><td valign=\"middle\" width=\"224\" bgcolor=\"#cccccc\" rowspan=\"2\"><table height=\"58\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td width=\"41%\"><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Available</font></div></td><td width=\"59%\"><em><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">&nbsp;- Plant is in stock</font></em></td></tr><tr><td height=\"17\"><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Available soon</font></div></td><td><em><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">&nbsp;- Maturing this season</font></em></td></tr><tr><td height=\"17\"><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">Order</font></div></td><td><em><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">&nbsp;- Orders Only</font></em></td></tr></tbody></table></td></tr><tr><td height=\"14\"><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">available</font></div></td><td><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">order</font></div></td><td><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" arial,=\"\" helvetica,=\"\" sans-serif=\"\">order</font></div></td></tr></tbody></table></td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><em>Other Information</em></td></tr><tr><td class=\"text\" class=\"text\"><hr size=\"1\" /></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table>', '', '16');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('37', '1', 'Care of Frangipani', '<table cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" bgcolor=\"#ffffff\"><tbody><tr class=\"text\" class=\"text\"><td class=\"bodytext\" valign=\"middle\" width=\"28%\" rowspan=\"3\" class=\"bodytext\"><em><img height=\"200\" src=\"http://www.djsway.com/images/Bowen.jpg\" width=\"175\" /></em> </td><td class=\"bodytext\" valign=\"middle\" width=\"72%\" height=\"95\" class=\"bodytext\"><strong><img height=\"30\" src=\"http://www.djsway.com/images/PFrang.gif\" width=\"160\" align=\"middle\" /></strong></td></tr><tr class=\"text\" class=\"text\"><td class=\"bodytext\" valign=\"middle\" height=\"95\" class=\"bodytext\"><em>Picture: <strong>Bowen Yellow</strong></em> </td></tr><tr class=\"text\" class=\"text\"><td class=\"bodytext\" valign=\"middle\" height=\"14\" class=\"bodytext\">&nbsp;</td></tr><tr class=\"text\" class=\"text\"><td class=\"bodytext\" colspan=\"2\" height=\"314\" class=\"bodytext\"><p>Frangipanis are a true tropical flowering plant. Frangipanis naturally go dormant during winter. The exceptions to this are the Evergreen range of Frangipanis. Frangipani can be grown in pots, in the ground, or in containers sunk in the ground. Frangipanis have a multitude of stunning fragrance and flowers that are surrounded by lush green foliage. Frangipanis originated from Cuba, Venezuela, and Central America. They have been distributed all over the world. Frangipanis are naturally drought resistance as they store all their nutrients and energy for the next season in their branches. They will tolerate mild frosts, check with us for advice on growing in your area. </p><p>Maintenance Frangipanis are heavy feeders, but need well drained soil. They can rot if their roots are kept wet. They will love you and reward you with lots of fragrant flowers if you give them plenty of sunshine and heat. Please don\'t over love your Frangipani, water as needed. In the winter months leave the watering to nature … whenever rain falls from the sky. In summer you can water as much as twice a day to once every 10 days, depending on your environment. When in doubt keep your Frangipani on the dry side. Please remember that your plant is a tropical plant and it does need heat and sunshine. If you live in an area that suffers with frost, please ask us how to care for your Frangipani.</p><ul><li>Plumeria/Frangipani plants prefer full sun, protected from frost. Moderately fertile, well drained soil <br /></li><li>Plumeria/Frangipani can be grown in a well drained pot <br /></li><li>Plants will flower for 3-9 months of the year, depending on local conditions <br /></li><li>Don’t allow to become too dry during the Summer months <br /></li><li>In colder area’s mulch well to keep the roots warm during winter <br /></li><li>Don’t water while plant is dormant (usually the winter months) <br /></li><li>Begin watering and fertilising at the first sign of the growth tip coming to life <br /></li><li>When watering a potted plumeria/frangipani, continue until water runs out of the drain holes of the pot <br /></li><li>Plumeria/Frangipani should only be pruned while the plant is in growth mode, Spring through Summer is the best time. </li></ul><p>You should fertilise your plant at least 3 times per year. At the beginning of spring, during summer while out in bloom and at the end of the season. Frangipani look fantastic companion planted with other plants. We suggest you try orchids, Poinsettias, Bromeliads, Stags and Elkhorns. These will all flower during winter while your Frangipani is dormant. These plants don\'t require a lot of water during winter, just like your Frangipani. We hope you enjoy your Frangipani and if you have any questions, please don\'t hesitate to call. </p><p><strong>Leaving Frangipani DJs Way</strong><br />Your Frangipani is taken from its pot and the dirt is shaken from the roots. We usually cut away the majority of leaves for easy packing. They are then soaked in a solution to prevent moisture loss while it is on it’s way to it’s new home. To make sure you plant has the maximum chance of flourishing we have added a rooting hormone. <br /><br /><strong>On arrival</strong><br />Check that your plant has arrived safely. If you don’t have time to plant your Frangipani straight away, please give it a drink. You can do this by placing your plant into a glass or bucket of water then potting it up when you have the time. Depending on what time of the year you purchase your plant, we recommend that you plant into pots to start with. The time to replant into the ground, is when your plants start to form buds. Dig a hole large enough to fit the plant and the pot soil into, gently take your Frangipani from its pot and place in the ground. Cover with soil and water in well.</p><p>We Recommend the following Books (click)</p><p><a href=\"/store/product_info.php?cPath=34&products_id=31\"><img src=\"/store/files/plumeria_book_1.jpg\" /></a>&nbsp;&nbsp;&nbsp;&nbsp; <a href=\"/store/product_info.php?cPath=34&products_id=32\"><img src=\"/store/files/plumeria_book_2.jpg\" /></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p></td></tr></tbody></table>', '', '6');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('38', '1', 'Dwarf Deciduous', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Dwarf Deciduous</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/DWDC.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/DWDC.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Decidedly dreamy, falling in a petal-soft landing, leaving a lingering trail of luscious Indian Summer scent</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr><tr><td class=\"text\" colspan=\"3\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"text\" class=\"text\"></td><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"text\" width=\"66%\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"90%\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><table height=\"41\" cellspacing=\"0\" cellpadding=\"0\" width=\"450\" align=\"right\" border=\"1\"><tbody><tr><td width=\"73\" bgcolor=\"#990000\" height=\"21\"><div align=\"center\"><font face=\"Verdana,\" color=\"#ffffff\" size=\"-2\" sans-serif=\"\" helvetica,=\"\" arial,=\"\">Small</font></div></td><td width=\"73\" bgcolor=\"#990000\"><div align=\"center\"><font face=\"Verdana,\" color=\"#ffffff\" size=\"-2\" sans-serif=\"\" helvetica,=\"\" arial,=\"\">Med</font></div></td><td width=\"73\" bgcolor=\"#990000\"><div align=\"center\"><font face=\"Verdana,\" color=\"#ffffff\" size=\"-2\" sans-serif=\"\" helvetica,=\"\" arial,=\"\">Large</font></div></td><td valign=\"middle\" width=\"224\" bgcolor=\"#cccccc\"><table height=\"58\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td width=\"41%\"><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" sans-serif=\"\" helvetica,=\"\" arial,=\"\">Available</font></div></td><td width=\"59%\"><em><font face=\"Verdana,\" size=\"-2\" sans-serif=\"\" helvetica,=\"\" arial,=\"\">&nbsp;- Plant is in stock</font></em></td></tr><tr><td height=\"17\"><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" sans-serif=\"\" helvetica,=\"\" arial,=\"\">Available soon</font></div></td><td><em><font face=\"Verdana,\" size=\"-2\" sans-serif=\"\" helvetica,=\"\" arial,=\"\">&nbsp;- Maturing this season</font></em></td></tr><tr><td height=\"17\"><div align=\"center\"><font face=\"Verdana,\" size=\"-2\" sans-serif=\"\" helvetica,=\"\" arial,=\"\">Order</font></div></td><td><em><font face=\"Verdana,\" size=\"-2\" sans-serif=\"\" helvetica,=\"\" arial,=\"\">&nbsp;- Orders Only</font></em></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table></div></td></tr></tbody></table>', '', '17');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('39', '1', 'Suprise 6 Pack - Small', '<p></p><p></p><table cellspacing=\"0\" cellpadding=\"2\" class=\"bordertext\" style=\"width: 581px; height: 109px;\"><tbody><tr bgcolor=\"#333333\"><td colspan=\"4\"><div align=\"center\"><strong><font size=\"5\" color=\"#00ff00\">Suprise 6 Pack - Small</font></strong></div></td></tr><tr><td width=\"1%\">&nbsp;</td><td width=\"73%\"><p><font size=\"4\">Six unknown rooted cuttings - small size </font></p><p><font size=\"4\">RRP $60 plus P&amp;H $20 - <font size=\"+3\">SAVE $20!</font></font></p></td><td width=\"8%\"><div align=\"center\"></div></td></tr></tbody></table>', '', '7');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('40', '1', 'Dwarf Evergreen', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Dwarf Evergreen</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/DWEV.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/DWEV.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Fragrance details coming soon</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr><tr><td class=\"text\" colspan=\"3\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"text\" class=\"text\"><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"text\" width=\"66%\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"90%\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table>', '', '8');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('41', '1', 'Aussie Gold Rush', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Aussie Gold Rush</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/AUGR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/AUGR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/AUGR.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Bold Bright, prolific flowering Frangipani.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Strike me Pink! At the core of this true blue beauty comes a rush of plush golden perfume – a rich and rare treasure</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">8 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\">Flowers early in season and will still be strong at the end</td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Large</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 25</td><td class=\"text\" class=\"text\">Width: 7</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '7');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('42', '1', 'Brisbane Mary Mac', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Brisbane Mary Mac</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/BRMM.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/BRMM.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Strong flowering Frangipani with a superb fragrance to match.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Originating from Brisbane (Queensland) - This is a wonderful complement to any garden.</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('43', '1', 'Cleveland Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Cleveland Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/CLPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/CLPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">A spectacular cerise sunset suffused with a cherry-berry zing over a sweet and lingering scented lusciousness</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">7 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 15 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 50 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 26</td><td class=\"text\" class=\"text\">Width: 7</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr><tr><td class=\"text\" colspan=\"3\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"text\" class=\"text\"></td><td class=\"text\" class=\"text\">&nbsp;</td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '6');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('44', '1', 'Darwin Streaky Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Darwin Streaky Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/DSPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/DSPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/DSPK.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Luscious, lingering, luxuriously laid back – think of love in the afternoon, and maybe later</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">8 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 20 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 25 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 25</td><td class=\"text\" class=\"text\">Width: 6</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Very leafy cover</td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('45', '1', 'Dean Conklin', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>&nbsp;PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Dean Conklin</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/DNCK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/DNCK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/DNCK.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Certainly an eye catcher, this is a certain choice for a spectaular centerpiece plant.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Impudent, impertinent but impishly lovable with a capricious whiff of peaches, spiced apples and cinnamon. </td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">10 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Big luscious flowers that are indescribable.</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 35</td><td class=\"text\" class=\"text\">Width: 12</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('46', '1', 'Dwarf Singapore Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>&nbsp;PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Dwarf Singapore Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/DWSG.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/DWSG.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/DWSG.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Petite but powerful! These little pink beauties pack a perfumed punch full of drama, dazzle and surprising staying power.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">5 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 10 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 15 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 14</td><td class=\"text\" class=\"text\">Width: 6</td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('47', '1', 'Dwarf Watermelon', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Dwarf Watermelon</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/WMDW.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/WMDW.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">A most unusual pink flower that has an appearance of crushed taffeta. When first opened has the shell shape with a strong pink colour. As the flower ages and opens it fades to an interesting pale pink. It has a small yellow centre and the flowers appear i</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">A symphony of jasmine, gardenia and Sunburst White</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">also known as Pink 100</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p><p><span class=\"text\" class=\"text\">For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></span></p>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('48', '1', 'Hot Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Hot Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/HTPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/HTPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">This one stands out like a beacon! - There is no mistaking the fabulous, pure brilliance of colour in this Frangipani. If you ever wanted a pink Frangipani for a special occasion...this is it.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Absolutely Hot Pink and gorgeous! - With a bold fragrance that could only go with such a personality. Hold onto your hats because this one is a statement and a half.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('49', '1', 'Jellico Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Jellico Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/JLPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/JLPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Large Bouquets of Pink Flowers</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">The mesmerising scent of blossom at sunset – warm, glowing and deliciously nose-twitching</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">6 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 50 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 28</td><td class=\"text\" class=\"text\">Width: 12</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Broad Leaf, very leafy</td></tr></tbody></table></td></tr><tr><td class=\"text\" colspan=\"3\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"text\" class=\"text\"></td><td class=\"text\" class=\"text\">&nbsp;</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('50', '1', 'Kate Moragne', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Kate Moragne</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/KMOR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/KMOR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Large flowers aranged in well spread bouquets - very beautiful</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">A beguiling seductress, innocent peaches and cream smoothie, barely concealing sultry, dusky desires. </td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">8 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 15 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 25</td><td class=\"text\" class=\"text\">Width: 8</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Leafy cover</td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '3');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('51', '1', 'Kimi Moragne', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Kimi Moragne</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/KIMR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/KIMR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Prolific Flowerer</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">An extravaganza of magenta opulence draws you irresistibly into a big hearted perfumed bouquet like an orchard in full blume.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">10 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">This is definitely one to write home about! Every picture is a postcard with this absolute gem of a Frangipani.</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 20 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 20 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 35</td><td class=\"text\" class=\"text\">Width: 8</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Strong distinct ribbing in the leaf</td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('52', '1', 'Kimo', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Kimo</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/KIMO.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/KIMO.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/KIMO.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Devine color - simply spectacular.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">As serene and supple as Japanese silk swishing through a grassy citrus grove at twilight</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">8 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 20 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 55 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 35</td><td class=\"text\" class=\"text\">Width: 8</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Heavy ribbed leaf</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '3');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('53', '1', 'Kirra Dawn', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Kirra Dawn</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/KRDN.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/KRDN.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/KRDN.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Fresh as a first up surf, or a fluffy fruit cocktail with a dash of sun splashed pineapple</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">7 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 40 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 30</td><td class=\"text\" class=\"text\">Width: 9</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Thick dark green leaf</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('54', '1', 'Kiss Me Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Kiss Me Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/KMPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/KMPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/KMPK.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">But not too quick! Linger in my dark dusky depths. Feel my passion, smell my promise of earthy, sultry allure – and try to escape!</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">6 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Very showy display of wonderful pink flowers</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 20 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 25</td><td class=\"text\" class=\"text\">Width: 9</td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('55', '1', 'Lady in Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Lady in Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/LDPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/LDPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/LDPK.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Large clusters of brilliant bouqets</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">She’s dressed to kill – beware the slinky pink perfume of her pouting lips, her powdered cheeks – or simply give in</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">6 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 15 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 20 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 23</td><td class=\"text\" class=\"text\">Width: 6</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('56', '1', 'Madame Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Madame Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/MDPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/MDPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/MDPK.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Prolific Flowerer</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Memories of the Boudoir – feminine, soft, flowery, powdery and forbidden pink kisses. An invitation to nostalgic love and stolen romance. </td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">4 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 25 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('57', '1', 'Marshmellow Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Marshmellow Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/MMPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/MMPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/MMPK.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Has a delightful curl in the petal</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">The delicate musky vanilla scent of melt-in-the-mouth marshmallow – a softie at heart and a true sweetie</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">5 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 25 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 25</td><td class=\"text\" class=\"text\">Width: 6</td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '3');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('58', '1', 'Misty Pink Fleck', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Misty Pink Fleck</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/MPKF.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/MPKF.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/MPKF.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Sitting pretty in pale pink. A blushing sweetheart sending out whispers of sweet pure romance, just waiting to be plucked.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">5 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">A petite Frangipani with delicate flower. Notice the unusual leaf pattern</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 20</td><td class=\"text\" class=\"text\">Width: 5</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Flecked leaf - very beautiful.</td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '3');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('59', '1', 'Pink Cherry', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Pink Cherry</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/PKCH.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/PKCH.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Large clusters of star shaped petals present an explosive array of color.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">As delicious as a slice of spicy cherry pie made with Mother Natures secret recipe. Scrumptious!</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">9 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 40 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 40 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 33</td><td class=\"text\" class=\"text\">Width: 8</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('60', '1', 'Pink Glow', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Pink Glow</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/PKGW.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/PKGW.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/PKGW.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">As intoxicating as sparkling rose wine – classic but with a wicked wink. A luscious scent that reminds lovers of spontaneous romance and a sweet afterglow. </td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">6 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Large</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 15 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 25</td><td class=\"text\" class=\"text\">Width: 7</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Very leafy tree</td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '1');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('61', '1', 'Pink Kink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Pink Kink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/PKKK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/PKKK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Like filling a bath with champagne and floating frangipani petals, surrounded by perfume candles. Leave the door open. </td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '0');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('62', '1', 'Plastic Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Plastic Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/PLPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/PLPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/PLPK.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Unusuall texture...almost artificial! But its natural alright. Large flowers in large bunches.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Beyond the funky name you’ll discover an ultra-silky, slinky-pink beauty with a lightly lyrical scent – anything but plastic! </td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">10 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 45 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 60 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 30</td><td class=\"text\" class=\"text\">Width: 10</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Lush green</td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '0');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('63', '1', 'Rainworth Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Rainworth Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/RAPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/RAPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Fresh oranges and lemons arranged in the rose pink heart of frangipani fragrance laced with a whiff of sweet tea rose</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '0');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('64', '1', 'Strawberries N Cream', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Strawberries N Cream</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/STNC.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/STNC.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Prolic flowering</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Fragrance details coming soon</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">6 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 15 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 25 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '0');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('65', '1', 'You Beaut Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>You Beaut Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/YBPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/YBPK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/YBPK.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">She’s the full come-on with cool, lingering kisses between hot pink satin sheets. WOW!</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr></tbody></table></td></tr></tbody></table></div></td></tr></tbody></table><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p>', '', '0');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('66', '1', 'Frangipani Vine', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Frangipani Vine</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/FVNE.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/FVNE.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/FVNE.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">White with a yellow centre</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Smells just like a real Frangipani should</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">8 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Chonemorpha fragrans is a vigorous tropical vine but easy to control. In its natural enviroment it climbs up the tall rainforest trees. </td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\">Summer and prolific</td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 10cm</td><td class=\"text\" class=\"text\">Width: 8cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Large shiny green with prominent midrib and veins</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '3');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('67', '1', 'J Harriet', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>J Harriet</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/JHAR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/JHAR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/JHAR.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Fragrance details coming soon</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">8 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 45 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 28</td><td class=\"text\" class=\"text\">Width: 8</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Thick leafy cover</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('68', '1', 'J L Trumpet', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>&nbsp;PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>J L Trumpet</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/JTPT.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/JTPT.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/JTPT.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Fine - Star shaped flowers</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">A brilliant blast of fruity frangipani played loud and clear. No wonder it blows its own trumpet!</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">6 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">This is one of Jimmy Littles creations from Hawaii.</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 35 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 70 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '1');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('69', '1', 'Little Beauty', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Little Beauty</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/LTBY.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/LTBY.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/LTBY.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Abundant bouquets</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">And so she is – as fresh and innocent as they come, but ready to give her all – just to you </td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">5 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">This is one of the prettiest Frangipani you will see. Her soft pastel colors and delicate texture makes her an absolute favorite.</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 20 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 35 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 27</td><td class=\"text\" class=\"text\">Width: 9</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Very lush leafy cover</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('70', '1', 'P obtusa Singapore White', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>P obtusa Singapore White</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/PLOB.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/PLOB.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/PLOB.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Large Clusters of Flower</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">The lure of love, of velvet kisses and murmurs of untold pleasure – soft, powdery but potent seduction in a secret Eden. </td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">6 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 10 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 20 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 26</td><td class=\"text\" class=\"text\">Width: 8</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Hi Gloss</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('71', '1', 'Pink Lips', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>&nbsp;PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Pink Lips</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/PKLP.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/PKLP.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/PKLP.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Thick Bunches of flowers</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Who’s been kissing this moist little mouth? Her lips are sweetly sealed – are yours?</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">6 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 25 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 30</td><td class=\"text\" class=\"text\">Width: 10</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Thick leafy cover</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('72', '1', 'Pudica Perfumed', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Pudica Perfumed</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/PUDP.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/PUDP.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/PUDP.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">White, the same as Pudica Variegated and Unscented</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Sweet and exotic</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Fiddle shaped glossy green</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('73', '1', 'Pudica Pink', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Pudica Pink</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/PUDK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/PUDK.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/PUDK.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">White Pudica flowers with a pink edging, absolutely beautiful</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Sweet and exotic</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr><tr><td class=\"text\" colspan=\"3\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"text\" class=\"text\"></td><td class=\"text\" class=\"text\">&nbsp;</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('74', '1', 'Pudica White', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>&nbsp;PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Pudica White</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/PUDC.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/PUDC.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/PUDC.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">White star shaped flower with yellow centre</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Unscented</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\">Strong throughout the season</td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Fiddle shaped glossy green</td></tr></tbody></table></td></tr><tr><td class=\"text\" colspan=\"3\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"text\" class=\"text\"></td><td class=\"text\" class=\"text\">&nbsp;</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('75', '1', 'Rainworth White', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Rainworth White</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/RAWT.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/RAWT.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Large Clusters</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">As elegantly poised as the legendary Audrey Hepburn – cool exterior masking passionate depths. Eternal. </td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">7 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 30 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 65 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 25</td><td class=\"text\" class=\"text\">Width: 7</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Thick leaf structure</td></tr></tbody></table></td></tr><tr><td class=\"text\" colspan=\"3\" class=\"text\"><table cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"text\" class=\"text\"></td><td class=\"text\" class=\"text\">&nbsp;</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('76', '1', 'Samoan Fluff', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Samoan Fluff</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/SAMF.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/SAMF.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Very large flowers in large clusters. I was particularly impressed when I first saw this one in full bloom. The flowers arrive in large clusters that look more like pure, mouth watering Pavlova. Notice the delicate fluff in the petals.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Stunning, white and yellow flower with a beautiful, fruity fragrance.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">10 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Samoan Fluff is a large, stunning, white and yellow flower</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 15 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 25 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 30</td><td class=\"text\" class=\"text\">Width: 10</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '1');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('77', '1', 'Sericifolia', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Sericifolia</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/SFOL.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/SFOL.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/SFOL.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">A dash of citrus, a hint of honey, a whiff of peach – all there in this fascinating and flirtatious enigma.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">6 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Almost a shrub, this makes for a beautiful corner plant.</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: 10 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: 15 cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 15</td><td class=\"text\" class=\"text\">Width: 3</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Slender leaf, very thick green cover.</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('78', '1', 'Snow White', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>&nbsp;PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Snow White</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/SNWW.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/SNWW.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/SNWW.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Such a pure lovely Frangipani - just like the fairy tale, this is the fairest of them all and such a sweet Frangipani fragrance too!</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">7 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">This enchanting forest gem is certain to bring your garden back to life with her abundant clusters of innocence. </td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Large Tree</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: 40</td><td class=\"text\" class=\"text\">Width: 10</td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '1');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('79', '1', 'Stenophylla', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Stenophylla</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/STEN.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/none.gif\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/STEN.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Fragrance details coming soon</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('80', '1', 'Sunburst White', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Sunburst White</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/SBWH.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/SBWH.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/none.gif\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Holds its shape and scent well and is great for ornamental decorations</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Classic Frangipani...the one we all love to see and smell...so sweet and fresh</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">7 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">One of the more common Frangipani seen around, this is by no means \"ordinary\". It grows to a beautiful summer shade tree.</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\">Strong flowering depending on latitude</td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium / Large</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('81', '1', 'Black Red', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Black Red</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/BLKR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/BLKR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/BLKR.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">The petals have a delicate velvet texture.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">A floral explosion of a dozen roses...it is to die for!</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">10 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Black Red is a mysterious, almost forbidden looking intense flower.</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\">Medium - Compact</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">medium</font></a> or <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">large</font></a>?</span></p></td></tr></tbody></table>', '', '2');
insert into products_description (products_id, language_id, products_name, products_description, products_url, products_viewed) values ('82', '1', 'Blood Red', '<table class=\"brdBlack\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" align=\"center\" bgcolor=\"#ffffff\" class=\"brdBlack\"><tbody><tr><td class=\"brdTBBlack\" bgcolor=\"#003300\" height=\"30\" class=\"brdTBBlack\"><div class=\"bodytext\" class=\"bodytext\"><font color=\"#009900\"><strong>PLANT PROFILE:&nbsp;</strong></font><font color=\"#ffffff\" size=\"+1\"><strong>Blood Red</strong></font></div></td></tr><tr bgcolor=\"#ffffcc\"><td bgcolor=\"#ffffff\"><div align=\"center\"></div><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr bgcolor=\"#006633\"><td class=\"bodytext\" width=\"29%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/flower/BLDR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"38%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/bunch/BLDR.jpg\" border=\"1\" /></div></td><td class=\"bodytext\" width=\"33%\" class=\"bodytext\"><div align=\"center\"><img src=\"http://www.djsway.com/images/tree/BLDR.jpg\" border=\"1\" /></div></td></tr><tr bgcolor=\"#003300\"><td class=\"bodytext\" colspan=\"3\" height=\"18\" class=\"bodytext\"><strong></strong></td></tr><tr><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>FLOWER</strong></font></div></td></tr></tbody></table></div></td><td class=\"bodytext\" height=\"23\" class=\"bodytext\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>PLANT INFO</strong></font></div></td></tr></tbody></table><font color=\"#ffffff\"></font></div></td><td height=\"23\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><table height=\"98%\" cellspacing=\"0\" cellpadding=\"0\" width=\"98%\" align=\"center\"><tbody><tr><td class=\"brdGreen\" class=\"brdGreen\"><div class=\"bodytext\" align=\"center\" class=\"bodytext\"><font color=\"#666666\"><strong>TREE</strong></font></div></td></tr></tbody></table></div></td></tr><tr><td class=\"bodytext\" height=\"98\" class=\"bodytext\"><table class=\"bodytext\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"bodytext\"><tbody><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">Notice the distinct dark vein in the flower.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Fragrance:</strong></td></tr><tr><td class=\"text\" class=\"text\">Sweet yet mysterious scent from a forbidden place. Very unusual Frangipani - almost taboo.</td></tr><tr><td class=\"text\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flower Size:</strong></td></tr><tr><td class=\"text\" class=\"text\">7 cm</td></tr></tbody></table></td><td valign=\"top\"><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" width=\"100%\" class=\"bodytext\"><strong>Description:</strong></td></tr><tr><td class=\"text\" class=\"text\">The true color is difficult to capture on camera but unless you have never seen blood before, you won’t know what I\\\\\\\'m describing when I say...\\\\\\\"It is blood red\\\\\\\".</td></tr><tr><td class=\"bodytext\" class=\"bodytext\">&nbsp;</td></tr><tr><td class=\"bodytext\" class=\"bodytext\"><strong>Flowering Habit:</strong></td></tr><tr><td class=\"text\" class=\"text\"></td></tr></tbody></table></td><td><table class=\"text\" cellspacing=\"0\" cellpadding=\"0\" width=\"95%\" align=\"center\" class=\"text\"><tbody><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Size:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" height=\"13\" class=\"text\"></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Branching Habit:</strong></td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Last order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">Next order break: cm</td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\">&nbsp;</td></tr><tr><td class=\"bodytext\" colspan=\"2\" class=\"bodytext\"><strong>Leaves:</strong></td></tr><tr><td class=\"text\" class=\"text\">Length: </td><td class=\"text\" class=\"text\">Width: </td></tr><tr><td class=\"text\" colspan=\"2\" class=\"text\"></td></tr></tbody></table></td></tr></tbody></table></div><p>For tips on how to care for your Frangipani <a href=\"http://www.djsway.com/maintenance.php\"><font color=\"#0033cc\">click here</font></a></p><p><span class=\"text\" class=\"text\">Whats the difference between a <a class=\"text\" href=\"http://www.djsway.com/sizes.php\" class=\"text\"><font color=\"#0000ff\">small</font></a>, <a class=\"text\" href=\"http://www.d