

# 
# Table structure for table `geodesic_classifieds_price_plans_categories`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_price_plans_categories`;
CREATE TABLE `geodesic_classifieds_price_plans_categories` (
  `category_price_plan_id` int(11) NOT NULL auto_increment,
  `price_plan_id` int(11) NOT NULL default '0',
  `category_id` int(11) NOT NULL default '0',
  `charge_per_ad_type` int(11) NOT NULL default '0',
  `charge_per_ad` double(5,2) NOT NULL default '0.00',
  `featured_ad_price` double(5,2) NOT NULL default '0.00',
  `bolding_price` double(5,2) NOT NULL default '0.00',
  `attention_getter_price` double(5,2) NOT NULL default '0.00',
  `charge_per_picture` double(5,2) NOT NULL default '0.00',
  `better_placement_charge` double(5,2) NOT NULL default '0.00',
  `ad_renewal_cost` double(5,2) NOT NULL default '0.00',
  `renewal_same_placement` tinyint(4) NOT NULL default '0',
  UNIQUE KEY `category_price_plan_id` (`category_price_plan_id`)
) TYPE=MyISAM AUTO_INCREMENT=12 ;

# 
# Dumping data for table `geodesic_classifieds_price_plans_categories`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_registration_session`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_registration_session`;
CREATE TABLE `geodesic_classifieds_registration_session` (
  `session` varchar(32) NOT NULL default '',
  `time_started` int(14) NOT NULL default '0',
  `email` tinytext NOT NULL,
  `email_verifier` tinytext NOT NULL,
  `username` tinytext NOT NULL,
  `password` tinytext NOT NULL,
  `password_verifier` tinytext NOT NULL,
  `company_name` tinytext NOT NULL,
  `firstname` tinytext NOT NULL,
  `lastname` tinytext NOT NULL,
  `address` tinytext NOT NULL,
  `address_2` tinytext NOT NULL,
  `city` tinytext NOT NULL,
  `state` tinytext NOT NULL,
  `country` tinytext NOT NULL,
  `zip` tinytext NOT NULL,
  `phone` tinytext NOT NULL,
  `phone_2` tinytext NOT NULL,
  `fax` tinytext NOT NULL,
  `url` tinytext NOT NULL,
  `registration_group` int(11) NOT NULL default '0',
  `registration_code_checked` tinyint(4) NOT NULL default '0',
  `personal_info_check` tinyint(4) NOT NULL default '0',
  `registration_code_use` tinyint(4) NOT NULL default '0',
  `registration_id` tinytext NOT NULL,
  `agreement` int(11) NOT NULL default '0',
  `business_type` int(11) NOT NULL default '0'
) TYPE=MyISAM;

# 
# Dumping data for table `geodesic_classifieds_registration_session`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_sell_question_choices`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_sell_question_choices`;
CREATE TABLE `geodesic_classifieds_sell_question_choices` (
  `value_id` int(11) NOT NULL auto_increment,
  `type_id` int(11) NOT NULL default '0',
  `value` tinytext NOT NULL,
  `display_order` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`value_id`)
) TYPE=MyISAM AUTO_INCREMENT=6 ;

# 
# Dumping data for table `geodesic_classifieds_sell_question_choices`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_sell_question_types`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_sell_question_types`;
CREATE TABLE `geodesic_classifieds_sell_question_types` (
  `type_id` int(11) NOT NULL auto_increment,
  `type_name` varchar(50) NOT NULL default '',
  `explanation` tinytext NOT NULL,
  PRIMARY KEY  (`type_id`)
) TYPE=MyISAM AUTO_INCREMENT=8 ;

# 
# Dumping data for table `geodesic_classifieds_sell_question_types`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_sell_questions`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_sell_questions`;
CREATE TABLE `geodesic_classifieds_sell_questions` (
  `question_id` int(11) NOT NULL auto_increment,
  `category_id` int(11) NOT NULL default '0',
  `name` tinytext NOT NULL,
  `explanation` tinytext NOT NULL,
  `choices` varchar(40) NOT NULL default '',
  `other_input` tinyint(4) NOT NULL default '0',
  `display_order` tinyint(4) NOT NULL default '0',
  `url_icon` tinytext NOT NULL,
  PRIMARY KEY  (`question_id`)
) TYPE=MyISAM AUTO_INCREMENT=14 ;

# 
# Dumping data for table `geodesic_classifieds_sell_questions`
# 

INSERT INTO `geodesic_classifieds_sell_questions` VALUES (1, 1, 'color', 'color of the testing thing', 'none', 0, 1, '');

# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_sell_session`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_sell_session`;
CREATE TABLE `geodesic_classifieds_sell_session` (
  `session` varchar(32) NOT NULL default '',
  `time_started` int(14) NOT NULL default '0',
  `classified_id` int(11) NOT NULL default '0',
  `terminal_category` int(11) NOT NULL default '0',
  `classified_details_collected` tinyint(4) NOT NULL default '0',
  `classified_images_collected` tinyint(4) NOT NULL default '0',
  `classified_approved` tinyint(4) NOT NULL default '0',
  `billing_approved` tinyint(4) NOT NULL default '0',
  `final_approval` tinyint(4) NOT NULL default '0',
  `classified_length` int(11) NOT NULL default '0',
  `classified_title` tinytext NOT NULL,
  `description` mediumtext NOT NULL,
  `price` tinytext NOT NULL,
  `currency_type` int(11) NOT NULL default '0',
  `state` tinytext NOT NULL,
  `country` tinytext NOT NULL,
  `zip_code` tinytext NOT NULL,
  `users_group` int(11) NOT NULL default '0',
  `users_price_plan` int(11) NOT NULL default '0',
  `user_credits` int(11) NOT NULL default '0',
  `user_currently_subscribed` tinyint(4) NOT NULL default '0',
  `payment_type` tinyint(4) NOT NULL default '0',
  `cc_number` tinytext NOT NULL,
  `decryption_key` tinytext NOT NULL,
  `cc_exp_year` tinytext NOT NULL,
  `cc_exp_month` tinytext NOT NULL,
  `bolding` tinyint(4) NOT NULL default '0',
  `featured_ad` tinyint(4) NOT NULL default '0',
  `better_placement` tinyint(4) NOT NULL default '0',
  `email_option` tinytext NOT NULL,
  `pedigree_s` tinytext NOT NULL,
  `pedigree_ss` tinytext NOT NULL,
  `pedigree_sd` tinytext NOT NULL,
  `pedigree_sss` tinytext NOT NULL,
  `pedigree_ssd` tinytext NOT NULL,
  `pedigree_sds` tinytext NOT NULL,
  `pedigree_sdd` tinytext NOT NULL,
  `pedigree_d` tinytext NOT NULL,
  `pedigree_ds` tinytext NOT NULL,
  `pedigree_dd` tinytext NOT NULL,
  `pedigree_dss` tinytext NOT NULL,
  `pedigree_dsd` tinytext NOT NULL,
  `pedigree_dds` tinytext NOT NULL,
  `pedigree_ddd` tinytext NOT NULL
) TYPE=MyISAM;

# 
# Dumping data for table `geodesic_classifieds_sell_session`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_sell_session_images`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_sell_session_images`;
CREATE TABLE `geodesic_classifieds_sell_session_images` (
  `session` varchar(32) NOT NULL default '',
  `display_order` tinyint(4) NOT NULL default '0',
  `image_type` tinyint(4) NOT NULL default '0',
  `image_id` int(11) NOT NULL default '0'
) TYPE=MyISAM;

# 
# Dumping data for table `geodesic_classifieds_sell_session_images`
# 

INSERT INTO `geodesic_classifieds_sell_session_images` VALUES ('', 2, 1, 15);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_sell_session_questions`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_sell_session_questions`;
CREATE TABLE `geodesic_classifieds_sell_session_questions` (
  `session` varchar(32) NOT NULL default '',
  `type_id` int(11) NOT NULL default '0',
  `question_value` text NOT NULL,
  `question_value_other` tinytext NOT NULL,
  `display_order` int(11) NOT NULL default '0'
) TYPE=MyISAM;

# 
# Dumping data for table `geodesic_classifieds_sell_session_questions`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_states`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_states`;
CREATE TABLE `geodesic_classifieds_states` (
  `state_id` int(11) NOT NULL auto_increment,
  `abbreviation` tinytext NOT NULL,
  `name` tinytext NOT NULL,
  `tax_rate` double(4,2) NOT NULL default '0.00',
  KEY `state_id` (`state_id`)
) TYPE=MyISAM AUTO_INCREMENT=158 ;

# 
# Dumping data for table `geodesic_classifieds_states`
# 

INSERT INTO `geodesic_classifieds_states` VALUES (110, 'AR', 'Arkansas', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (109, 'AZ', 'Arizona', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (108, 'AK', 'Alaska', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (107, 'AL', 'Alabama', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (113, 'CT ', 'Connecticut ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (112, 'CO ', 'Colorado ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (111, 'CA ', 'California', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (116, 'FL ', 'Florida ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (157, 'WY ', 'Wyoming ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (115, 'DC ', 'District of Columbia ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (114, 'DE ', 'Delaware ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (122, 'IA ', 'Iowa ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (121, 'IN ', 'Indiana ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (120, 'IL ', 'Illinois ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (119, 'ID ', 'Idaho ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (118, 'HI ', 'Hawaii ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (146, 'RI ', 'Rhode Island ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (125, 'LA ', 'Louisiana ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (124, 'KY ', 'Kentucky ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (123, 'KS ', 'Kansas ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (133, 'MT ', 'Montana ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (132, 'MO ', 'Missouri ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (131, 'MS ', 'Mississippi ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (130, 'MN ', 'Minnesota ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (129, 'MI ', 'Michigan ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (128, 'MA ', 'Massachusetts ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (127, 'MD ', 'Maryland ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (126, 'ME ', 'Maine ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (140, 'NC ', 'North Carolina ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (139, 'NY ', 'New York', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (138, 'NM ', 'New Mexico', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (137, 'NJ ', 'New Jersey', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (136, 'NH ', 'New Hampshire ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (135, 'NV ', 'Nevada ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (134, 'NE ', 'Nebraska ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (145, 'PA ', 'Pennsylvania ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (144, 'OR ', 'Oregon ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (143, 'OK ', 'Oklahoma ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (142, 'OH ', 'Ohio ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (150, 'TX ', 'Texas ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (149, 'TN ', 'Tennessee ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (148, 'SD ', 'South Dakota ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (147, 'SC ', 'South Carolina ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (156, 'WI ', 'Wisconsin ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (155, 'WV ', 'West Virginia ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (154, 'WA ', 'Washington ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (153, 'VA ', 'Virginia ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (152, 'VT ', 'Vermont ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (117, 'GA ', 'Georgia ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (141, 'ND ', 'North Dakota ', 0.00);
INSERT INTO `geodesic_classifieds_states` VALUES (151, 'UT ', 'Utah ', 0.00);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_transactions`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_transactions`;
CREATE TABLE `geodesic_classifieds_transactions` (
  `transaction_id` int(11) NOT NULL auto_increment,
  `user_id` int(11) NOT NULL default '0',
  `classified_id` int(11) NOT NULL default '0',
  `payment_type` tinyint(4) NOT NULL default '0',
  `type_of_billing` tinyint(4) NOT NULL default '0',
  `bolding_choice` tinyint(4) NOT NULL default '0',
  `better_placement_choice` tinyint(4) NOT NULL default '0',
  `featured_ad_choice` tinyint(4) NOT NULL default '0',
  `bolding_price` double(5,2) NOT NULL default '0.00',
  `better_placement_charge` double(5,2) NOT NULL default '0.00',
  `featured_ad_price` double(5,2) NOT NULL default '0.00',
  `tax` double(5,2) NOT NULL default '0.00',
  `total` double(5,2) NOT NULL default '0.00',
  UNIQUE KEY `transaction_id` (`transaction_id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

# 
# Dumping data for table `geodesic_classifieds_transactions`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_user_communications`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_user_communications`;
CREATE TABLE `geodesic_classifieds_user_communications` (
  `message_id` int(11) NOT NULL auto_increment,
  `message_to` int(11) NOT NULL default '0',
  `message_from` int(11) NOT NULL default '0',
  `message_from_non_user` mediumtext NOT NULL,
  `regarding_ad` int(11) NOT NULL default '0',
  `date_sent` int(14) NOT NULL default '0',
  `message` mediumtext NOT NULL,
  `replied_to_this_message` int(11) NOT NULL default '0',
  PRIMARY KEY  (`message_id`),
  KEY `message_id_2` (`message_id`)
) TYPE=MyISAM AUTO_INCREMENT=6 ;

# 
# Dumping data for table `geodesic_classifieds_user_communications`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_user_credits`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_user_credits`;
CREATE TABLE `geodesic_classifieds_user_credits` (
  `credits_id` int(11) NOT NULL auto_increment,
  `user_id` int(11) NOT NULL default '0',
  `credit_count` int(11) NOT NULL default '0',
  `credits_expire` int(14) NOT NULL default '0',
  UNIQUE KEY `credits_id` (`credits_id`)
) TYPE=MyISAM AUTO_INCREMENT=3 ;

# 
# Dumping data for table `geodesic_classifieds_user_credits`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_user_groups_price_plans`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_user_groups_price_plans`;
CREATE TABLE `geodesic_classifieds_user_groups_price_plans` (
  `id` int(11) NOT NULL auto_increment,
  `group_id` int(4) NOT NULL default '1',
  `price_plan_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=8 ;

# 
# Dumping data for table `geodesic_classifieds_user_groups_price_plans`
# 

INSERT INTO `geodesic_classifieds_user_groups_price_plans` VALUES (1, 1, 1);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_user_subscriptions`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_user_subscriptions`;
CREATE TABLE `geodesic_classifieds_user_subscriptions` (
  `subscription_id` int(11) NOT NULL auto_increment,
  `user_id` int(11) NOT NULL default '0',
  `subscription_expire` int(14) NOT NULL default '0',
  UNIQUE KEY `subscription_id` (`subscription_id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

# 
# Dumping data for table `geodesic_classifieds_user_subscriptions`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_userdata`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_userdata`;
CREATE TABLE `geodesic_classifieds_userdata` (
  `id` int(11) NOT NULL default '0',
  `username` varchar(25) NOT NULL default '',
  `email` varchar(50) NOT NULL default '',
  `newsletter` tinyint(1) NOT NULL default '0',
  `level` int(1) NOT NULL default '0',
  `company_name` varchar(50) NOT NULL default '',
  `business_type` varchar(30) NOT NULL default '',
  `firstname` varchar(50) NOT NULL default '',
  `lastname` varchar(50) NOT NULL default '',
  `address` varchar(50) NOT NULL default '',
  `address_2` varchar(50) default NULL,
  `zip` varchar(12) NOT NULL default '',
  `city` varchar(50) NOT NULL default '',
  `state` varchar(50) NOT NULL default '',
  `country` varchar(50) NOT NULL default '',
  `phone` varchar(50) NOT NULL default '',
  `phone2` varchar(50) NOT NULL default '',
  `fax` varchar(50) default NULL,
  `url` tinytext,
  `date_joined` int(14) NOT NULL default '0',
  `communication_type` int(11) NOT NULL default '3',
  `rate_sum` int(11) NOT NULL default '0',
  `rate_num` int(11) NOT NULL default '0',
  `expose_email` int(11) NOT NULL default '0',
  `expose_company_name` int(11) NOT NULL default '0',
  `expose_firstname` int(11) NOT NULL default '0',
  `expose_lastname` int(11) NOT NULL default '0',
  `expose_address` int(11) NOT NULL default '0',
  `expose_city` int(11) NOT NULL default '0',
  `expose_state` int(11) NOT NULL default '0',
  `expose_country` int(11) NOT NULL default '0',
  `expose_zip` int(11) NOT NULL default '0',
  `expose_phone` int(11) NOT NULL default '0',
  `expose_phone2` int(11) NOT NULL default '0',
  `expose_fax` int(11) NOT NULL default '0',
  `expose_url` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM;

# 
# Dumping data for table `geodesic_classifieds_userdata`
# 

INSERT INTO `geodesic_classifieds_userdata` VALUES (1, 'administration', 'geoproducts@mygeoproducts.com', 0, 1, 'Geodesic Solutions', '', 'admin', 'admin', 'address', '', 'zipcode', 'city', 'state', 'country', 'phone', '', 'fax', '', 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_classifieds_userdata_history`
# 

DROP TABLE IF EXISTS `geodesic_classifieds_userdata_history`;
CREATE TABLE `geodesic_classifieds_userdata_history` (
  `history_id` int(11) NOT NULL auto_increment,
  `date_of_change` int(14) NOT NULL default '0',
  `id` int(11) NOT NULL default '0',
  `username` varchar(25) NOT NULL default '',
  `email` varchar(50) NOT NULL default '',
  `company_name` varchar(50) NOT NULL default '',
  `business_type` varchar(30) NOT NULL default '',
  `firstname` varchar(50) NOT NULL default '',
  `lastname` varchar(50) NOT NULL default '',
  `address` varchar(50) NOT NULL default '',
  `address_2` varchar(50) default NULL,
  `zip` varchar(30) NOT NULL default '',
  `city` varchar(50) NOT NULL default '',
  `state` varchar(50) NOT NULL default '',
  `country` varchar(50) NOT NULL default '',
  `phone` varchar(50) NOT NULL default '',
  `phone2` varchar(50) NOT NULL default '',
  `fax` varchar(50) default NULL,
  `url` tinytext,
  PRIMARY KEY  (`history_id`)
) TYPE=MyISAM AUTO_INCREMENT=8 ;

# 
# Dumping data for table `geodesic_classifieds_userdata_history`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_configuration`
# 

DROP TABLE IF EXISTS `geodesic_configuration`;
CREATE TABLE `geodesic_configuration` (
  `configuration_id` int(11) NOT NULL auto_increment,
  `configuration_name` varchar(50) NOT NULL default '',
  `configuration_value` tinytext NOT NULL,
  PRIMARY KEY  (`configuration_id`),
  KEY `configuration_id_2` (`configuration_id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

# 
# Dumping data for table `geodesic_configuration`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_confirm`
# 

DROP TABLE IF EXISTS `geodesic_confirm`;
CREATE TABLE `geodesic_confirm` (
  `id` varchar(30) NOT NULL default '',
  `mdhash` varchar(100) default NULL,
  `username` varchar(25) default NULL,
  `password` varchar(25) default NULL,
  `email` varchar(50) default NULL,
  `date` int(14) NOT NULL default '0',
  `firstname` varchar(30) NOT NULL default '',
  `lastname` varchar(50) NOT NULL default '',
  `address` varchar(50) NOT NULL default '',
  `address_2` varchar(50) default NULL,
  `city` varchar(50) NOT NULL default '',
  `state` varchar(30) NOT NULL default '',
  `country` varchar(50) NOT NULL default '',
  `zip` varchar(15) NOT NULL default '',
  `phone` varchar(25) NOT NULL default '',
  `phone_2` varchar(25) default NULL,
  `fax` varchar(25) default NULL,
  `company_name` varchar(50) NOT NULL default '',
  `business_type` varchar(30) NOT NULL default '',
  `url` varchar(75) default NULL,
  `newsletter` varchar(10) NOT NULL default '0',
  `group_id` int(11) NOT NULL default '0'
) TYPE=MyISAM;

# 
# Dumping data for table `geodesic_confirm`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_confirm_email`
# 

DROP TABLE IF EXISTS `geodesic_confirm_email`;
CREATE TABLE `geodesic_confirm_email` (
  `id` int(8) NOT NULL default '0',
  `email` varchar(50) default NULL,
  `mdhash` varchar(100) default NULL,
  `date` int(14) NOT NULL default '0'
) TYPE=MyISAM;

# 
# Dumping data for table `geodesic_confirm_email`
# 


# --------------------------------------------------------

# 
# Table structure for table `geodesic_credit_card_choices`
# 

DROP TABLE IF EXISTS `geodesic_credit_card_choices`;
CREATE TABLE `geodesic_credit_card_choices` (
  `cc_id` int(11) NOT NULL auto_increment,
  `chosen_cc` tinyint(4) NOT NULL default '0',
  `name` tinytext NOT NULL,
  `explanation` tinytext NOT NULL,
  `cc_table` tinytext NOT NULL,
  `cc_transaction_table` tinytext NOT NULL,
  `cc_initiate_file` tinytext NOT NULL,
  `cc_process_file` tinytext NOT NULL,
  `cc_admin_file` tinytext NOT NULL,
  UNIQUE KEY `cc_id` (`cc_id`)
) TYPE=MyISAM AUTO_INCREMENT=5 ;

# 
# Dumping data for table `geodesic_credit_card_choices`
# 

INSERT INTO `geodesic_credit_card_choices` VALUES (1, 1, 'Authorize.net', 'This is the credit card handler for Authorize.net.', 'geodesic_cc_authorizenet', 'geodesic_cc_authorizenet_transactions', 'cc_initiate_authorizenet.php', 'cc_process_authorizenet.php', 'admin_cc_authorizenet.php');
INSERT INTO `geodesic_credit_card_choices` VALUES (2, 0, '2 Checkout', 'This allows the use of the 2Checkout.com payment gateway', 'geodesic_cc_twocheckout', 'geodesic_cc_twocheckout_transactions', 'cc_initiate_2checkout.php', 'cc_process_2checkout.php', 'admin_cc_2checkout.php');
INSERT INTO `geodesic_credit_card_choices` VALUES (3, 0, 'Bital', 'This allows the use of the Bitel payment gateway', 'geodesic_cc_bitel', 'geodesic_cc_bitel_transactions', 'cc_initiate_bitel.php', '', 'admin_cc_bitel.php');
INSERT INTO `geodesic_credit_card_choices` VALUES (4, 0, 'Linkpoint', 'This allows the use of the Linkpoint payment gateway', 'geodesic_cc_linkpoint', 'geodesic_cc_linkpoint_transactions', 'cc_initiate_linkpoint.php', '', 'admin_cc_linkpoint.php');

# --------------------------------------------------------

# 
# Table structure for table `geodesic_currency_types`
# 

DROP TABLE IF EXISTS `geodesic_currency_types`;
CREATE TABLE `geodesic_currency_types` (
  `type_id` int(11) NOT NULL auto_increment,
  `type_name` tinytext NOT NULL,
  `precurrency` tinytext NOT NULL,
  `postcurrency` tinytext NOT NULL,
  `display_order` int(11) NOT NULL default '0',
  UNIQUE KEY `type_id` (`type_id`),
  KEY `type_id_2` (`type_id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

# 
# Dumping data for table `geodesic_currency_types`
# 

INSERT INTO `geodesic_currency_types` VALUES (1, 'US - Dollars', '$', 'USD', 1);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_font_elements`
# 

DROP TABLE IF EXISTS `geodesic_font_elements`;
CREATE TABLE `geodesic_font_elements` (
  `element_id` int(11) NOT NULL auto_increment,
  `text_page_id` smallint(6) NOT NULL default '0',
  `text_page_sub_id` int(11) NOT NULL default '0',
  `element` varchar(50) NOT NULL default '',
  `name` varchar(100) NOT NULL default '',
  `description` tinytext NOT NULL,
  `font_family` tinytext NOT NULL,
  `font_size` tinyint(4) NOT NULL default '0',
  `font_style` varchar(10) NOT NULL default '1',
  `font_weight` varchar(10) NOT NULL default '',
  `color` varchar(10) NOT NULL default '',
  `text_decoration` varchar(15) NOT NULL default '',
  `background_color` varchar(10) NOT NULL default '',
  `background_image` tinytext NOT NULL,
  `text_align` varchar(10) NOT NULL default '',
  `text_transform` varchar(15) NOT NULL default '',
  `text_vertical_align` varchar(15) NOT NULL default '',
  PRIMARY KEY  (`element_id`),
  KEY `text_id_2` (`element_id`)
) TYPE=MyISAM AUTO_INCREMENT=145 ;

# 
# Dumping data for table `geodesic_font_elements`
# 

INSERT INTO `geodesic_font_elements` VALUES (1, 1, 1, 'display_ad_category_tree', 'category+tree', 'category+tree+to+where+the+current+ad+is', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '000000', 'none', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (2, 1, 1, 'display_ad_title', 'title+of+ad', 'title+of+ad', 'Geneva, Arial, Helvetica, san-serif', 18, 'normal', 'bold', '000000', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (3, 1, 1, 'display_ad_label', 'Ad+element+labels', 'field+labels', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '000000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (4, 1, 1, 'display_ad_value', 'data+values', 'data+values', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '000000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (5, 1, 1, 'display_ad_links', 'links+within+the+ad', 'ad+link+text', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '000000', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (6, 1, 1, 'display_ad_extra_question_label', 'extra+question+text', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '000000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (7, 1, 1, 'display_ad_extra_question_value', 'category+question+values', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '000000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (8, 1, 2, 'browsing_category_name', 'category+name', '', 'Arial, Helvetica, sans-serif', 14, 'normal', 'bold', '000000', 'none', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (9, 1, 2, 'browsing_category_tree', 'category+tree', '', 'Arial, Helvetica, sans-serif', 14, 'normal', 'normal', '', 'none', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (10, 1, 2, 'browsing_category_description', 'category+description', '', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (11, 1, 2, 'browsing_category_count', 'category+count', '', 'Geneva, Arial, Helvetica, san-serif', 12, 'normal', 'normal', '999999', 'none', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (12, 1, 2, 'browsing_result_table_header', 'result+table+header+row', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', 'ffffff', '', '#005AE1', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (13, 1, 2, 'browsing_result_table_body_even', 'result+set+even+rows', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '000000', '', 'dddddd', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (14, 1, 2, 'browsing_result_table_body_even_bold', 'result+set+even+rows+bolded', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bolder', '', '', 'ffffcc', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (15, 1, 2, 'browsing_result_table_body_odd', 'result+set+odd+rows', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '000000', '', 'eeeeee', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (16, 1, 2, 'browsing_result_table_body_odd_bold', 'result+set+odd+rows+bolded', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bolder', '', '', 'ffff66', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (17, 1, 2, 'browsing_result_page_links', 'result+page+links', '', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (18, 1, 2, 'main_page_title', 'title+of+main+browse+page', '', 'Arial, Helvetica, sans-serif', 24, 'normal', 'bold', '000000', '', 'ffffff', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (19, 1, 2, 'main_page_message', 'main+page+message', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '000000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (20, 1, 3, 'notify_friend_title', 'notify+friend+form+title', '', 'Arial, Helvetica, sans-serif', 16, 'normal', 'bold', '000000', '', 'eeeeee', 'images/misc/hdr_bg.gif', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (21, 1, 3, 'notify_friend_description', 'notify+friend+form+instruction', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '000000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (22, 1, 3, 'notify_friend_error', 'notify+friend+form+error+text', '', '', 0, '', '', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (23, 1, 3, 'notify_friend_field_label', 'notify+friend+form+field+labels', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (24, 1, 3, 'notify_friend_input_box', 'notify+friend+form+input+box', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (25, 4, 0, 'menu_bar', 'menu+bar+elements', 'menu+bar', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '000000', 'none', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (26, 5, 0, 'user_menu_bar', 'user+menu+bar', '', 'Verdana, Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '000000', 'none', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (27, 6, 0, 'user_management_title', 'user+management+title', 'title+used+throughout+user+management+section', 'Arial, Helvetica, sans-serif', 16, 'normal', 'bolder', '', '', 'eeeeee', 'images/misc/hdr_bg.gif', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (28, 6, 0, 'user_management_instructions', 'user+management+instructions', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (29, 6, 0, 'user_management_section_title', 'user+management+section+title', '', 'Arial, Helvetica, sans-serif', 14, 'normal', 'bold', 'ffffff', '', '808080', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (30, 6, 0, 'user_management_result_set_title_bar', 'result+set+bar', 'title+bar+of+all+result+set+within+the+user+management+section', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', 'ffffff', '', '999999', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (31, 6, 4, 'user_management_my_info_label', 'info+label', 'label+text+describing+the+data', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (32, 6, 4, 'user_management_my_info_data', 'user+data', 'the+users+field+data', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (33, 6, 0, 'user_management_bottom_link', 'link+text+at+bottom', 'the+link+text+appearing+at+the+bottom+of+all+pages+within+the+user+management+section', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', 'underline', '', '', 'center', '', 'top');
INSERT INTO `geodesic_font_elements` VALUES (34, 6, 0, 'user_management_submit_button', 'submit+button', 'submit+buttons+throughout+the+user+management+section', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (35, 6, 0, 'user_management_result_set_even_row', 'even+rows+of+all+result+sets', 'even+row+of+all+result+sets+in+the+user+management+section', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', 'eeeeee', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (36, 6, 0, 'user_management_result_set_even_odd', 'odd+rows+of+result+sets', 'odd+rows+of+all+result+sets+within+the+user+management+section', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', 'dddddd', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (37, 6, 5, 'user_management_communications_field_label', 'field+label', 'field+label+text+in+communication+form', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (38, 6, 5, 'user_management_communications_field_data', 'field+data', 'field+data+in+the+communication+form', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (39, 6, 0, 'user_management_menu_links', 'user+management+home+links', 'links+in+the+user+management+home', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '000000', 'underline', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (40, 2, 0, 'place_an_ad_title', 'place+an+ad+titles', 'title+text+within+every+page+of+the+place+an+ad+section', 'Arial, Helvetica, sans-serif', 16, 'normal', 'bolder', '000000', '', 'eeeeee', 'images/misc/hdr_bg.gif', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (41, 2, 0, 'place_an_ad_instructions', 'place+an+ad+instructions', 'instruction+text+within+the+place+an+ad+section', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', 'none', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (42, 2, 0, 'place_an_ad_end_link', 'link+text+to+end+place+an+ad+process', 'link+text+at+the+bottom+of+all+place+an+ad+pages', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (43, 2, 6, 'place_an_ad_choose_category_link', 'category+links', 'link+text+allowing+the+user+to+choose+a+category', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (44, 2, 6, 'place_an_ad_choose_category_bold', 'bold+text+of+the+current+category', 'text+of+the+current+parent+category+that+can+be+chosen', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (88, 2, 12, 'cost_item_row_left', 'Classified Ad Cost Rows - Left Side', 'Classified ad item costs (cost of ad, bolding, featured ad,....)', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (48, 2, 8, 'place_an_ad_image_title_bar', 'title+bar+of+image+table', 'image+bar+appearing+at+the+top+of+the+image+field+list', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (49, 2, 9, 'place_an_ad_approval_links', 'approval+and+edit+links', 'links+at+the+bottom+of+the+approval+page+allowing+the+user+to+approve+or+edit+their+ads+information', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (50, 2, 0, 'place_an_ad_error', 'error+messages', 'text+of+the+error+messages+generated+during+the+place+an+ad+process', 'Arial, Helvetica, sans-serif', 14, 'normal', 'normal', '880000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (51, 1, 1, 'browsing_image_links', 'image+links+to+larger+images', 'links+at+the+bottom+of+images+to+show+the+larger+versions', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', 'none', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (52, 3, 0, 'footer_admin_email_link', 'email+link', 'admin+email+link+in+the+footer', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', 'none', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (53, 3, 0, 'footer_powered_by_link', 'powered+by+link', 'powered+by+link+in+the+footer', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', 'none', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (54, 3, 0, 'footer_text', 'footer+text', 'text+in+footer', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', 'none', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (55, 12, 0, 'header_text', 'header+text', 'header+text+when+text+is+the+header+choice', 'Arial, Helvetica, sans-serif', 36, 'normal', 'bold', 'ffffff', 'none', '000000', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (56, 11, 0, 'choose_language_title', 'Choose+Language+Title', 'Title+text+of+the+choose+language+form', 'Arial, Helvetica, sans-serif', 16, 'normal', 'bold', '000000', '', 'eeeeee', 'images/misc/hdr_bg.gif', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (57, 11, 0, 'choose_language_instruction', 'Choose+Language+Instuctions', 'Instruction+text+for+the+choose+language+form', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (58, 11, 0, 'choose_language_field_label', 'Choose+Language+Field+Label', 'choose+language+field+label+for+choosing+a+language+to+view+the+site+in', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (59, 11, 0, 'choose_language_button', 'Choose+Language+Submit+Button', 'submit+button+to+enter+user+language+choice', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (60, 6, 10, 'user_management_detail_data', 'Data+in+the+classified+ad+detail', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (61, 6, 10, 'user_management_detail_field', 'field+label+in+ad+detail', 'Field+labels+in+the+classified+ad+detail', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (62, 6, 11, 'user_management_ad_filter_label', 'Field+Label+in+the+Add+An+Ad+Filter+Page', 'Necessary+fields+to+ad+a+new+ad+filter', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (63, 6, 10, 'user_management_detail_image_links', 'image+links+in+detail', 'Links+to+larger+images+in+ad+detail', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (64, 8, 0, 'search_page_title', 'Search+Page+Title', 'Title+text+of+the+search+classifieds+page', 'Arial, Helvetica, sans-serif', 16, 'normal', 'bold', '000000', '', 'eeeeee', 'images/misc/hdr_bg.gif', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (65, 8, 0, 'search_page_instructions', 'Search+Page+Instructions', 'Instruction+on+the+use+of+the+search+page', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (66, 8, 0, 'search_page_field_labels', 'Search+Page+Fields', 'Fields+of+the+search+page', 'Arial, Helvetica, sans-serif', 12, 'oblique', 'bold', '', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (67, 8, 0, 'search_page_bottom_links', 'Link+text+at+bottom', 'Link+text+at+the+bottom+of+the+search+page', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (68, 8, 0, 'search_page_error', 'Search+Page+Error', 'Error+message+of+the+search+page', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '880000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (69, 8, 0, 'search_page_results_title_row', 'Title+Row+of+Search+Results', 'Title+row+of+search+page+results+returned', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', 'ffffff', '', '999999', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (70, 8, 0, 'search_page_results_even_row', 'Search+Results+Even+Row', 'Even+row+of+search+results', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', 'eeeeee', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (71, 8, 0, 'search_page_results_odd_row', 'Search+Results+Odd+Row', 'Odd+row+of+search+results', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', 'dddddd', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (72, 10, 0, 'registration_title', 'Registration+Title', 'Title+text+of+the+registration+section', 'Arial, Helvetica, sans-serif', 16, 'normal', 'bolder', '000000', '', 'eeeeee', 'images/misc/hdr_bg.gif', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (73, 10, 0, 'registration_instructions', 'registration+instructions', 'Instruction+of+all+registration+pages', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (74, 10, 0, 'registration_field_label', 'Label+text+of+registration+fields', 'registration+labels', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'right', '', 'top');
INSERT INTO `geodesic_font_elements` VALUES (75, 10, 0, 'registration_field_error', 'Registration+Field+Error', 'Error+messages+of+the+registration+fields', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '880000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (76, 10, 0, 'registration_links', 'Registration+Links', 'Links+within+the+registration+section', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (77, 10, 0, 'registration_submit_button', 'Registration+Submit+Buttons', 'submit+buttons+throughout+the+registration+section', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (78, 9, 0, 'login_form_title', 'Title+of+Login+Form', 'title+of+the+login+form', 'Arial, Helvetica, sans-serif', 16, 'normal', 'bold', '000000', '', 'eeeeee', 'images/misc/hdr_bg.gif', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (79, 9, 0, 'login_form_instructions', 'Login+Form+Instructions', 'Instructions+for+the+login+form', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (80, 9, 0, 'login_form_field_labels', 'Login+Form+Field+Labels', 'Username+and+password+labels', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (81, 9, 0, 'login_form_error', 'Login+Form+Error', 'Error+message+of+the+login+form', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '88000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (82, 9, 0, 'login_form_submit_button', 'Login+Form+Submit+Button', 'Submit+button+of+the+login+form', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (86, 2, 12, 'tax_field_left', 'Tax Field - Left Side', 'Text and row of the tax field (left side)', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (87, 2, 12, 'subtotal_field_left', 'Subtotal Field - Left Side', 'Subtotal text and row', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (84, 2, 0, 'place_an_ad_image_links', 'image+links+to+larger+images', 'Link+text+below+image+linking+to+the+larger+version+of+an+image', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', 'none', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (85, 2, 12, 'total_field_left', 'Total field - Left Side', 'Text appearing in the total line (left side)', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (83, 2, 13, 'place_an_ad_section_titles', 'Section Title of Billing Information Page', 'Section titles of the subsections within the billing information form', 'Arial, Helvetica, sans-serif', 14, 'normal', 'bolder', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (47, 2, 7, 'category_specific_title', 'Category Specific Title', 'category fields area title', 'Arial, Helvetica, sans-serif', 14, 'normal', 'bold', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (89, 2, 7, 'place_an_ad_details_error', 'Error+Text+in+Details+Page', 'Error+message+of+the+ad+details+page+in+the+place+an+ad+process', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '880000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (90, 2, 13, 'place_an_ad_transaction_detail_feature_field', 'Extra+Feature+Title', 'Text+labeling+the+extra+feature+offered', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (91, 2, 13, 'place_an_ad_transaction_detail_feature_data', 'Extra+Feature+Cost', 'Cost+text+showing+the+cost+of+an+extra+feature', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (92, 2, 13, 'place_an_ad_transaction_detail_feature_explanation', 'Extra+Feature+Explanation', 'Explanation+of+how+the+extra+feature+offered+work', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (93, 2, 13, 'place_an_ad_transaction_detail_payment_type_title', 'Method+of+Payment+Title', 'Text+label+of+the+method+of+payment+offered', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (94, 2, 13, 'place_an_ad_transaction_detail_payment_type_explan', 'Method+of+Payment+Explanation', 'Text+explanation+of+the+method+of+payment+offered', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (96, 10, 0, 'registration_field_data', 'Registration+Field+Data', 'Registration+data+that+has+been+collected+and+is+being+shown+to+the+registrant+to+verify', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (97, 1, 0, 'featured_ad_title_in_thumb', 'Featured+Ad+Title', 'If+there+is+no+image+to+a+displayed+featured+ad+the+title+will+be+displayed+in+this+font', 'Geneva, Arial, Helvetica, san-serif', 10, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (99, 1, 0, 'featured_ad_row_header', 'Featured+Ad+Row+Header', 'This+controls+the+look+of+the+featured+ads+header', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '000000', '', '#E8F1FD', 'images/misc/menu_bar_bg.gif', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (100, 1, 0, 'newest_ad_row_header', 'Header+Row+for+the+Newest+Ads', 'The+title+and+the+row+for+the+newest+ads+list+on+the+home+page', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '000000', '', '#E8F1FD', 'images/misc/menu_bar_bg.gif', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (101, 1, 2, 'featured_ad_category_row_header', 'Header Row for the Featured Ads in Categories', 'The header text modifier for the featured ads title row', 'Arial, Helvetica, sans-serif', 14, 'normal', 'bold', '', '', '#D2E4FC', 'images/misc/menu_bar_bg.gif', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (102, 10, 0, 'required_field_marker', 'Required+Field+Marker', '*+that+signifies+required+field', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '880000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (103, 2, 7, 'category_specific_description', 'Category Specific Description', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (104, 2, 8, 'image_collection', 'Image Collection Fields', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (109, 2, 0, 'submit_button_place_ad', 'Submit button', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (105, 2, 9, 'left_column_1', 'Left Column Data', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (106, 2, 9, 'right_column_1', 'Right Column Data', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (107, 2, 9, 'cat_tree', 'Category Tree', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (108, 2, 9, 'title_ad', 'Ad Title', '', 'Arial, Helvetica, sans-serif', 18, 'normal', 'bold', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (45, 2, 7, 'left_column_data', 'Left field data', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (46, 2, 7, 'right_column_data', 'Right field data', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (110, 2, 12, 'place_an_ad_final_approval_cost_header_right', 'Column Header for Final Cost Left Side', 'Column header in the form showing the final totals for the transaction(right side)', 'Arial, Helvetica, sans-serif', 14, 'normal', 'bolder', 'ffffff', '', '999999', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (111, 2, 12, 'total_field_right', 'Total Field - Right Side', 'Text appearing in the total line', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (112, 2, 12, 'tax_field_right', 'Tax Field - Right Sidetax', 'Text and row of the tax field (left side)', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (113, 2, 12, 'subtotal_field_right', 'Subtotal Field - Right Side', 'Subtotal text and row', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (114, 2, 12, 'final_approval_section_title', 'Section Title', '', 'Arial, Helvetica, sans-serif', 18, 'normal', 'normal', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (115, 2, 12, 'cost_item_row_right', 'Classified Ad Cost Rows - Right Side', 'Classified ad item costs (cost of ad, bolding, featured ad,....)', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (116, 6, 0, 'user_management_error_message', 'Error Message', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (117, 2, 14, 'renewal_title', 'Renewal Page Title', '', 'Arial, Helvetica, sans-serif', 16, 'normal', 'bold', '000000', '', 'eeeeee', 'images/misc/hdr_bg.gif', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (118, 2, 14, 'renewal_instructions', 'Renewal Page Instructions', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (119, 2, 14, 'renewal_field_label', 'Field Labels', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (120, 2, 14, 'renewal_field_data', 'Field Data', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (121, 2, 14, 'renewal_field_explanation', 'Field Explanation', '', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (122, 2, 14, 'renewal_payment_title', 'Payment Choice Title', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (123, 2, 14, 'renewal_payment_explanation', 'Payment Explanation', '', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (124, 2, 14, 'renewal_cc_payment_fields', 'Credit Card Fields', '', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (125, 2, 14, 'renewal_error_message', 'Renewal Error Message', '', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (126, 2, 14, 'renewal_submit_button', 'Submit Button', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (127, 2, 14, 'renewal_back_to_my_ads_link', 'Back to Current Ads Link', '', 'Arial, Helvetica, sans-serif', 10, 'normal', 'bold', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (128, 2, 14, 'renewal_transaction_header', 'Transaction Header', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', 'ffffff', '', '999999', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (129, 2, 14, 'renewal_transaction_label_header', 'Renewal Transaction Sub-Header', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', 'ffffff', '', '999999', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (130, 2, 14, 'renewal_transaction_data_header', 'Data Fields', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', 'ffffff', '', '999999', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (131, 1, 15, 'seller_info_header', 'Header Information for Seller Info', '', 'Arial, Helvetica, sans-serif', 14, 'normal', 'bold', '000000', '', 'E1E1FF', 'images/misc/menu_bar_bg.gif', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (132, 1, 15, 'seller_info_fields', 'Seller Info Field Labels', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '000000', '', 'eeeeee', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (133, 1, 15, 'seller_info_data', 'Seller Info Data', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '000000', '', 'dddddd', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (134, 8, 0, 'search_page_field_data', 'Seller Info Data', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '000000', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (135, 8, 0, 'search_submit_button', 'Search Submit Button', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (136, 1, 2, 'browsing_category_td', 'category td', 'modifies the td that surrounds each category reference', 'Arial, Helvetica, sans-serif', 14, 'italic', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (137, 4, 0, 'date_display', 'date display', 'font for the date display top left of every page', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (138, 4, 0, 'top_right_links', 'top right links', 'font for the links at the top right of every page', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '000000', '', '', '', 'right', '', '');
INSERT INTO `geodesic_font_elements` VALUES (139, 4, 0, 'welcome_user', 'user greeting', 'font for the greeting displayed', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (140, 4, 0, 'quick_search_box', 'quick search box', 'font for the quick search box area', 'Arial, Helvetica, sans-serif', 12, 'normal', 'normal', '', '', '', '', 'left', '', '');
INSERT INTO `geodesic_font_elements` VALUES (142, 4, 0, 'quick_search_box_text', 'quick search box text', 'font for the text that is typed into the quick search box', 'Arial, Helvetica, sans-serif', 10, 'normal', 'normal', '', '', '', '', '', '', '');
INSERT INTO `geodesic_font_elements` VALUES (143, 1, 0, 'hottest_ad_row_header', 'Hottest Ad Row Header', 'This controls the look of the featured ads header', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '000000', '', '#E8F1FD', 'images/misc/menu_bar_bg.gif', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (144, 1, 16, 'pedigree_data', 'pedigree information', '', 'Arial, Helvetica, sans-serif', 12, 'normal', 'bold', '', '', '', '', 'center', '', '');
INSERT INTO `geodesic_font_elements` VALUES (95, 2, 12, 'place_an_ad_final_approval_cost_header_left', 'Column Header for Final Cost Left Side', 'Column header in the form showing the final totals for the transaction(left side)', 'Arial, Helvetica, sans-serif', 14, 'normal', 'bolder', 'ffffff', '', '999999', '', 'center', '', '');

# --------------------------------------------------------

# 
# Table structure for table `geodesic_font_pages`
# 

DROP TABLE IF EXISTS `geodesic_font_pages`;
CREATE TABLE `geodesic_font_pages` (
  `text_page_id` int(11) NOT NULL auto_increment,
  `page_name` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`text_page_id`),
  KEY `text_page_id_2` (`text_page_id`)
) TYPE=MyISAM AUTO_INCREMENT=13 ;

# 
# Dumping data for table `geodesic_font_pages`
# 

INSERT INTO `geodesic_font_pages` VALUES (1, 'Browse Categories / Ads');
INSERT INTO `geodesic_font_pages` VALUES (2, 'Place Ad Process');
INSERT INTO `geodesic_font_pages` VALUES (3, 'Footer');
INSERT INTO `geodesic_font_pages` VALUES (4, 'Site Menu Bar / Misc Site Wide Text');
INSERT INTO `geodesic_font_pages` VALUES (5, 'User Menu Bar');
INSERT INTO `geodesic_font_pages` VALUES (6, 'User Management (My Account)');
INSERT INTO `geodesic_font_pages` VALUES (8, 'Search Page');
INSERT INTO `geodesic_font_pages` VALUES (9, 'Login Page / Password Forms');
INSERT INTO `geodesic_font_pages` VALUES (10, 'Registration Section');
INSERT INTO `geodesic_font_pages` VALUES (11, 'Language Selection Form');
INSERT INTO `geodesic_font_pages` VALUES (12, 'Header');

# --------------------------------------------------------

# 
# Table structure for table `geodesic_font_subpages`
# 

DROP TABLE IF EXISTS `geodesic_font_subpages`;
CREATE TABLE `geodesic_font_subpages` (
  `sub_page_id` int(11) NOT NULL auto_increment,
  `parent_page_id` int(11) NOT NULL default '0',
  `name` tinytext NOT NULL,
  `explanation` tinytext NOT NULL,
  PRIMARY KEY  (`sub_page_id`)
) TYPE=MyISAM AUTO_INCREMENT=16 ;

# 
# Dumping data for table `geodesic_font_subpages`
# 

INSERT INTO `geodesic_font_subpages` VALUES (1, 1, 'Ad Display Page', 'This page displays the ad''s details.');
INSERT INTO `geodesic_font_subpages` VALUES (2, 1, 'Browse Category Pages', 'Fields displayed when browsing the classified ad categories.');
INSERT INTO `geodesic_font_subpages` VALUES (3, 1, 'Notify a Friend Form', 'This form allows a user to notify a friend by email of an ad.');
INSERT INTO `geodesic_font_subpages` VALUES (4, 6, 'Account Info Pages', 'This is the section where a user can modify their Account Information.');
INSERT INTO `geodesic_font_subpages` VALUES (5, 6, 'Communications (Messages) Pages ', 'This text appears on the user''s My Messages Pages.');
INSERT INTO `geodesic_font_subpages` VALUES (6, 2, 'Ad Category Section', 'First step in the Place Ad Process.');
INSERT INTO `geodesic_font_subpages` VALUES (7, 2, 'Ad Details Form', 'Second step in the Place Ad Process. User enters their ad''s details.');
INSERT INTO `geodesic_font_subpages` VALUES (8, 2, 'Ad Images Form', 'Third step in the Place Ad Process. User enters their ad''s images/files.');
INSERT INTO `geodesic_font_subpages` VALUES (9, 2, 'Approval Page', 'This step allows the user to preview the information they have just entered for their ad.');
INSERT INTO `geodesic_font_subpages` VALUES (10, 6, 'Ad Edit Details Page', 'This page allows the user to edit their ad details.');
INSERT INTO `geodesic_font_subpages` VALUES (11, 6, 'Ad Filters', 'This section displays the Ad Filter forms and lists.');
INSERT INTO `geodesic_font_subpages` VALUES (12, 2, 'Final Approval Page', 'Users approve their transaction before processing.');
INSERT INTO `geodesic_font_subpages` VALUES (13, 2, 'Transaction Details Page', 'This page displays the transaction (cost) details of the ad and allows the user to select a payment choice.');
INSERT INTO `geodesic_font_subpages` VALUES (14, 2, 'Renewal Form', 'This form allows the user to renew one of their ads.');
INSERT INTO `geodesic_font_subpages` VALUES (15, 1, 'Seller Other Ads Page', 'This page displays the seller other ads and personal information they wish to expose.');

# --------------------------------------------------------

# 
# Table structure for table `geodesic_paypal_transactions`
# 

DROP TABLE IF EXISTS `geodesic_paypal_transactions`;
CREATE TABLE `geodesic_paypal_transactions` (
  `transaction_id` int(11) NOT NULL auto_increment,
  `id` int(11) NOT NULL default '0',
  `user_id` int(11) NOT NULL default '0',
  `receiver_email` tinytext NOT NULL,
  `item_name` tinytext NOT NULL,
  `item_number` tinytext NOT NULL,
  `quantity` tinyint(4) NOT NULL default '0',
  `num_cart_items` tinyint(4) NOT NULL default '0',
  `first_name` tinytext NOT NULL,
  `last_name` tinytext NOT NULL,
  `address_street` tinytext NOT NULL,
  `address_city` tinytext NOT NULL,
  `address_state` tinytext NOT NULL,
  `address_zip` tinytext NOT NULL,
  `address_status` varchar(15) NOT NULL default '',
  `payer_email` tinytext NOT NULL,
  `paypal_email_id` tinytext NOT NULL,
  `payer_id` int(11) NOT NULL default '0',
  `custom` varchar(20) NOT NULL default '',
  `payment_status` varchar(15) NOT NULL default '',
  `pending_reason` varchar(15) NOT NULL default '',
  `payment_date` varchar(30) NOT NULL default '',
  `payment_gross` double(5,2) NOT NULL default '0.00',
  `payment_fee` double(5,2) NOT NULL default '0.00',
  `txn_id` tinytext NOT NULL,
  `txn_type` varchar(15) NOT NULL default '',
  `payer_status` varchar(15) NOT NULL default '',
  `payment_type` varchar(15) NOT NULL default '',
  `notify_version` varchar(10) NOT NULL default '',
  `verify_sign` tinytext NOT NULL,
  `renew` int(11) NOT NULL default '0',
  `ad_placement` int(11) NOT NULL default '0',
  UNIQUE KEY `transaction_id` (`transaction_id`),
  UNIQUE KEY `transaction_id_2` (`transaction_id`),
  UNIQUE KEY `transaction_id_3` (`transaction_id`),
  UNIQUE KEY `transaction_id_4` (`transaction_id`),
  UNIQUE KEY `transaction_id_5` (`transaction_id`),
  UNIQUE KEY `transaction_id_6` (`transaction_id`),
  UNIQUE KEY `transaction_id_7` (`transaction_id`),
  UNIQUE KEY `transaction_id_8` (`transaction_id`),
  UNIQUE KEY `transaction_id_9` (`transaction_id`),
  UNIQUE KEY `transaction_id_10` (`transaction_id`),
  UNIQUE KEY `transaction_id_11` (`transaction_id`),
  UNIQUE KEY `transaction_id_12` (`transaction_id`),
  UNIQUE KEY `transaction_id_13` (`transaction_id`),
  UNIQUE KEY `transaction_id_14` (`transaction_id`),
  UNIQUE KEY `transaction_id_15` (`transaction_id`),
  UNIQUE KEY `transaction_id_16` (`transaction_id`),
  UNIQUE KEY `transaction_id_17` (`transaction_id`),
  UNIQUE KEY `transaction_id_18` (`transaction_id`),
  UNIQUE KEY `transaction_id_19` (`transaction_id`),
  UNIQUE KEY `transaction_id_20` (`transaction_id`),
  UNIQUE KEY `transaction_id_21` (`transaction_id`),
  UNIQUE KEY `transaction_id_22` (`transaction_id`),
  UNIQUE KEY `transaction_id_23` (`transaction_id`),
  UNIQUE KEY `transaction_id_24` (`transaction_id`),
  UNIQUE KEY `transaction_id_25` (`transaction_id`),
  UNIQUE KEY `transaction_id_26` (`transaction_id`),
  UNIQUE KEY `transaction_id_27` (`transaction_id`)
) TYPE=MyISAM AUTO_INCREMENT=24 ;

# 
# Dumping data for table `geodesic_paypal_transactions`
# 

INSERT INTO `geodesic_paypal_transactions` VALUES (1, 117, 1, '', 'classified ad', '1', 1, 1, 'admin', 'admin', 'address ', 'city', 'state', 'zipcode', '', 'geoclassifieds@geodesicsolutions.com', '', 1, 'cbab558e2da10087', '', '', '', 1.00, 0.00, '', '', '', '', '', '', 0, 1);
INSERT INTO `geodesic_paypal_transactions` VALUES (2, 118, 1, 'paypal@geodesicsolutions.com', 'classified ad', '1', 1, 1, 'admin', 'admin', 'address ', 'city', 'state', 'zipcode', '', 'geoclassifieds@geodesicsolutions.com', '', 1, 'cef156321833e8e7', '', '', '', 1.00, 0.00, '', '', '', '', '', '', 0, 1);
INSERT INTO `geodesic_paypal_transactions` VALUES (3, 119, 1, 'paypal@geodesicsolutions.com', 'classified ad', '1', 1, 1, 'admin', 'admin', 'address ', 'city', 'state', 'zipcode', '', 'geoclassifieds@geodesicsolutions.com', '', 1, '6762298fb1e51202', '', '', '', 14.00, 0.00, '', '', '', '', '', '', 0, 1);
INSERT INTO `geodesic_paypal_transactions` VALUES (4, 120, 1, 'paypal@geodesicsolutions.com', 'classified ad', '1', 1, 1, 'admin', 'admin', 'address ', 'city', 'state', 'zipcode', '', 'geoclassifieds@geodesicsolutions.com', '', 1, 'd6e1f6b8f5e47e8c', '', '', '', 1.00, 0.00, '', '', '', '', '', '', 0, 1);
INSERT INTO `geodesic_paypal_transactions` VALUES (5, 125, 2, '', 'classified ad renewal', '1', 1, 1, 'geotester1', 'geotester1', 'geotester1 geotester1', 'geotester1', 'AL', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '24d483c519a2ac41', '', '', '', 2.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (6, 132, 2, '', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'TX', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '024f22e798b7566e', '', '', '', 2.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (7, 133, 2, '', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '38520e5b2a8cc256', '', '', '', 22.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (8, 135, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, 'f2f420ff4bee6836', '', '', '', 14.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (9, 135, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '14a377b6e106f002', '', '', '', 14.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (10, 134, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '71612458fd86461c', '', '', '', 7.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (11, 132, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '487d4fe7847ec0e8', '', '', '', 9.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (12, 132, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, 'd528a13d6d9a4fca', '', '', '', 9.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (13, 132, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, 'c8388dc693a6db1e', '', '', '', 9.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (14, 136, 2, 'paypal@geodesicsolutions.com', 'classified ad', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '6abf1c60e771c13f', '', '', '', 44.00, 0.00, '', '', '', '', '', '', 0, 1);
INSERT INTO `geodesic_paypal_transactions` VALUES (15, 136, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, 'd7dc445f0c4f7de7', '', '', '', 76.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (16, 136, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, 'b86341633560c926', '', '', '', 44.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (17, 136, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '1a3a4f8f1cae32f9', '', '', '', 76.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (18, 132, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '1441732ec613edce', '', '', '', 114.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (19, 132, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '6cd08b4f53351739', '', '', '', 114.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (20, 135, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '2898c901c3f54879', '', '', '', 114.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (21, 136, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, 'b3699cf7b96aafaa', '', '', '', 114.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (22, 137, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '61fd2c7f55ac918d', '', '', '', 114.00, 0.00, '', '', '', '', '', '', 1, 0);
INSERT INTO `geodesic_paypal_transactions` VALUES (23, 138, 2, 'paypal@geodesicsolutions.com', 'classified ad renewal', '1', 1, 1, 'Rob', 'Tester', '1901 Central Dr. ', 'Bedford', 'none', '12345', '', 'geotester1@geodesicsolutions.com', '', 2, '62390e88ab785a1a', '', '', '', 114.00, 0.00, '', '', '', '', '', '', 1, 0);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_price_plan_ad_lengths`
# 

DROP TABLE IF EXISTS `geodesic_price_plan_ad_lengths`;
CREATE TABLE `geodesic_price_plan_ad_lengths` (
  `length_id` int(11) NOT NULL auto_increment,
  `price_plan_id` int(11) NOT NULL default '0',
  `category_id` int(11) NOT NULL default '0',
  `length_of_ad` int(11) NOT NULL default '0',
  `display_length_of_ad` tinytext NOT NULL,
  `length_charge` double(5,2) NOT NULL default '0.00',
  UNIQUE KEY `length_id` (`length_id`)
) TYPE=MyISAM AUTO_INCREMENT=15 ;

# 
# Dumping data for table `geodesic_price_plan_ad_lengths`
# 

INSERT INTO `geodesic_price_plan_ad_lengths` VALUES (5, 1, 0, 7, '1 week', 3.00);
INSERT INTO `geodesic_price_plan_ad_lengths` VALUES (6, 1, 0, 14, '2 weeks', 5.00);
INSERT INTO `geodesic_price_plan_ad_lengths` VALUES (7, 1, 0, 21, '3 weeks', 6.00);
INSERT INTO `geodesic_price_plan_ad_lengths` VALUES (8, 1, 0, 31, '1 month', 7.00);
INSERT INTO `geodesic_price_plan_ad_lengths` VALUES (10, 1, 0, 3, '3 days', 0.00);
INSERT INTO `geodesic_price_plan_ad_lengths` VALUES (14, 1, 371, 7, 'one week', 7.00);
INSERT INTO `geodesic_price_plan_ad_lengths` VALUES (12, 1, 371, 14, 'two weeks', 14.00);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_sessions`
# 

DROP TABLE IF EXISTS `geodesic_sessions`;
CREATE TABLE `geodesic_sessions` (
  `classified_session` varchar(32) NOT NULL default '',
  `user_id` int(11) NOT NULL default '0',
  `last_time` int(14) NOT NULL default '0',
  `ip` varchar(20) NOT NULL default '',
  `level` tinyint(4) NOT NULL default '0'
) TYPE=MyISAM;

# 
# Dumping data for table `geodesic_sessions`
# 

INSERT INTO `geodesic_sessions` VALUES ('10cfa7b74240cdf35fd4151ec757f327', 1, 1164751766, '0', 1);
INSERT INTO `geodesic_sessions` VALUES ('b8c147d27ca1ad87b186c1d649f5b3a4', 0, 1164751769, '0', 0);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_text_badwords`
# 

DROP TABLE IF EXISTS `geodesic_text_badwords`;
CREATE TABLE `geodesic_text_badwords` (
  `badword_id` int(11) NOT NULL auto_increment,
  `badword` varchar(30) NOT NULL default '',
  `badword_replacement` varchar(30) NOT NULL default '',
  PRIMARY KEY  (`badword_id`),
  KEY `badword_id_2` (`badword_id`)
) TYPE=MyISAM AUTO_INCREMENT=3 ;

# 
# Dumping data for table `geodesic_text_badwords`
# 

INSERT INTO `geodesic_text_badwords` VALUES (2, 'moron', 'idiot');

# --------------------------------------------------------

# 
# Table structure for table `geodesic_text_languages`
# 

DROP TABLE IF EXISTS `geodesic_text_languages`;
CREATE TABLE `geodesic_text_languages` (
  `language_id` int(11) NOT NULL auto_increment,
  `language` varchar(50) NOT NULL default '',
  `browser_label` varchar(50) NOT NULL default '',
  `default_language` tinyint(4) NOT NULL default '0',
  `active` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`language_id`)
) TYPE=MyISAM AUTO_INCREMENT=9 ;

# 
# Dumping data for table `geodesic_text_languages`
# 

INSERT INTO `geodesic_text_languages` VALUES (1, 'English - US', '', 1, 1);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_text_languages_messages`
# 

DROP TABLE IF EXISTS `geodesic_text_languages_messages`;
CREATE TABLE `geodesic_text_languages_messages` (
  `text_page_id` int(11) NOT NULL default '0',
  `text_id` int(11) NOT NULL default '0',
  `language_id` tinyint(4) NOT NULL default '0',
  `text` mediumtext NOT NULL,
  `email_text` tinyint(4) NOT NULL default '0'
) TYPE=MyISAM;

# 
# Dumping data for table `geodesic_text_languages_messages`
# 

INSERT INTO `geodesic_text_languages_messages` VALUES (3, 6, 1, 'contact+admin', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 7, 1, 'login', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 8, 1, 'logout', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 9, 1, 'register', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 10, 1, 'home', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 11, 1, 'lost+password', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 12, 1, 'my account', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 13, 1, 'place+an+ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (5, 14, 1, 'my active ads&nbsp;&nbsp;&nbsp;:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (5, 15, 1, 'edit+my+info', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (5, 16, 1, 'ad filters&nbsp;&nbsp;&nbsp;:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 17, 1, 'Item Category:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 19, 1, 'Seller:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 20, 1, 'Ad Duration:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 21, 1, 'days', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 22, 1, 'Ad Description:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 23, 1, 'Country:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 24, 1, 'Congratulations%21+You+successfully+entered+your+classified+%22ad%22.+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 25, 1, 'Click+here+to+view+your+%22ad%22.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 26, 1, 'Please+choose+the+main+category+that+your+%22ad%22+will+appear+in%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 27, 1, '+category+has+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 28, 1, '+subcategories%3Cbr%3E+Please+select+a+subcategory+to+place+your+%22ad%22+in%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 29, 1, 'The+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 30, 1, 'subcategories+to+choose+from%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 31, 1, '+Category', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 32, 1, '-or-+just+place+your+item+in+the+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 33, 1, 'Please+give+your+%22ad%22+a+title.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 34, 1, 'Please+choose+the+state%2Fprovince+your+item+is+located+in.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 35, 1, 'Please+fill+in+a+zip+code+for+the+classified+%22ad%22.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 36, 1, 'Please+enter+a+valid+zip+code', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 37, 1, 'Please+give+a+brief+description+for+your+classified+ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 40, 1, 'url+of+image+you+would+like+to+use', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 43, 1, 'Zip Code:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 44, 1, '', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 45, 1, 'Ad Title:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 46, 1, 'this+will+appear+in+any+listing+of+classified', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 47, 1, 'Ad Length:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 48, 1, '', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 49, 1, 'State/Province:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 50, 1, 'approve', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 51, 1, 'edit+category', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 52, 1, 'edit+images', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 53, 1, 'edit+details', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 54, 1, 'Main', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 56, 1, 'Could+not+complete+your+request', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 57, 1, 'There+was+an+internal+error+in+trying+to+complete+your+request', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 58, 1, 'There+are+no+main+categories', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 59, 1, 'Please use the form below to accurately describe the details of your item.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 60, 1, 'Image+url', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 61, 1, 'Location:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 62, 1, 'Your+attempt+to+add+a+new+classified+ad+has+been+stopped.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 63, 1, 'Click+here+to+add+another+classified+ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 64, 1, 'Cancel Ad Placement', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 67, 1, 'Ad+Category', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 68, 1, 'Seller', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 69, 1, 'Ad+started', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 70, 1, 'Time+remaining', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 71, 1, 'Location', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 72, 1, 'Description', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 73, 1, 'Ad+%23+%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 74, 1, 'Subcategories+of+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 75, 1, '<br><br><br>We''re Sorry! There are currently no classified ads listed in this category.<br><br>Please check back soon!', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 79, 1, 'Main', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 80, 1, 'Internal+Browse+Error%21', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 81, 1, 'Not+enough+information+to+display+the+classified+%22ad%22.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 82, 1, 'Welcome+to+your+new+classifieds+site%21%21', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 83, 1, 'Choose a category below to begin browsing or enter a keyword to search for in the left column:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 84, 1, 'There+are+no+categories+yet.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 85, 1, 'Not+enough+information+to+browse+the+Classifieds.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 86, 1, 'Title', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 87, 1, 'There+are+no+subcategories+to+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 88, 1, 'My Account', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 89, 1, '%3CDIV%3EClick+on+the+links+below+to+access+the+various+areas+of+your+account.%3C%2FDIV%3E%0D%0A%3CDIV%3E%26nbsp%3B%3C%2FDIV%3E%0D%0A%3CDIV%3E%26nbsp%3B%3C%2FDIV%3E', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 90, 1, '%3CP+align%3Dcenter%3Eedit%3C%2FP%3E', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 91, 1, '%3CP+align%3Dcenter%3Eremove%3C%2FP%3E', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 92, 1, '<div align=center><br><br><b>You currently have no active ads.</b><br><br><br></div>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 93, 1, '%3CIMG+alt%3D%22%22+src%3D%22images%2Fcategories%2Fcheckmark.gif%22+border%3D0%3E%26nbsp%3B+my+active+ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 94, 1, '%3CIMG+alt%3D%22%22+src%3D%22images%2Fcategories%2Fcheckmark.gif%22+border%3D0%3E%26nbsp%3B+my+expired+ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 95, 1, '%3CIMG+alt%3D%22%22+src%3D%22images%2Fcategories%2Fcheckmark.gif%22+border%3D0%3E%26nbsp%3Bmy+account+information', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 96, 1, '%3CIMG+alt%3D%22%22+src%3D%22images%2Fcategories%2Fcheckmark.gif%22+border%3D0%3E%26nbsp%3B+place+an+ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 97, 1, '%3CIMG+alt%3D%22%22+src%3D%22images%2Fcategories%2Fcheckmark.gif%22+border%3D0%3E%26nbsp%3B+my+ad+filters', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 98, 1, '%3CIMG+alt%3D%22%22+src%3D%22images%2Fcategories%2Fcheckmark.gif%22+border%3D0%3E%26nbsp%3B+my+messages', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 99, 1, '%3CIMG+alt%3D%22%22+src%3D%22images%2Fcategories%2Fcheckmark.gif%22+border%3D0%3E%26nbsp%3B+message+settings', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 100, 1, '<div align=center><br><br><b>You currently have no ad filters.</b><br><br><br></div>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 101, 1, 'categories+to+search', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 102, 1, 'search+terms+to+use', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 103, 1, 'date+created', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 104, 1, 'delete', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 105, 1, 'remove+all+ad+filters', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 106, 1, '+and+subcategories', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 107, 1, 'Add New Ad Filter', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 108, 1, 'To+insert+a+new+ad+filter+choose+the+category+you+wish+to+look+in.++Then+select+if+you+want+to+search+that+categories+subcategories+also.++Lastly+enter+the+search+term+you+want+to+search+the+new+classified+ads+for.++Then+click+the+save+filter+button+at+the+bottom.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 109, 1, 'Category to Search:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 110, 1, 'search subcategories also:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 111, 1, 'terms to monitor for:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 112, 1, '(use a comma to separate search terms)', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 681, 1, 'Yes', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 118, 1, 'Message From:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 119, 1, 'Search+the+Classified+Ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 120, 1, 'Search for ads within this site through the form below.  You can search by any field below or any combination of fields. When you select a category, the page will refresh with additional search fields for that particular category if applicable.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 121, 1, 'Search+for', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 122, 1, 'Use+a+%91%2C%92+or++%91or%92+to+separate+terms+you+wish+to+search+using+the+or+condition.++This+means+that+a+result+will+be+returned+if+a+classified+title+and%2For+description+matches+any+one+of+the+terms+linked+using+the+%27%2C%27+or+%27or%27.++Use+as+many+or+terms+as+you+wish+strung+together.%3Cbr%3E%3Cbr%3EExample%3A+this+or+that%3Cbr%3Ewill+return+all+classified+ads+that+have+%27this%27+or+%27that%27+in+their+title+and%2For+descriptions.%3Cbr%3E%3Cbr%3E%0D%0AUse+a+%27and%27+between+terms+for+a+multi-conditional+search.+This+means+that+a+result+will+be+returned+if+the+title+and%2For+description+of+a+classifieds+matches+all+terms+in+the+multi-conditional+statement.%3Cbr%3E%3CBr%3EExample%3A%3Cbr%3Ethis+and+that%3Cbr%3Ewill+return+all+classified+ads+that+have+%27this%27+and+%27that%27+in+their+titles+and%2For+descriptions.%0D%0A%0D%0AChoose+whether+to+search+titles+and%2For+descriptions+by+clicking+the+appropriate+checkboxes.++%0D%0A%0D%0AAlso+choose+whether+to+match+partial+text+or+a+whole+word+in+the+in+search.++%3Cbr%3E%3Cbr%3E%0D%0AExample%3A%0D%0A%3Cbr%3Esome%3Cbr%3Ewould+match+%27here+is+something%27+in+a+partial+word+match+but+would+not+in+a+whole+word+search.++The+term+%27some%27+would+match+%27+here+is+some+stuff%27+in+a+whole+word+match.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 123, 1, 'Login+Form', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 124, 1, '<br><br>Please enter your username and password in the fields below:<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 125, 1, 'username:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 126, 1, 'password:', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 127, 1, 'Login', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 128, 1, 'Please+enter+your+username.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 129, 1, 'Please+enter+your+password.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 130, 1, 'Please+re-enter+your+username.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 131, 1, 'Please+re-enter+your+password.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 132, 1, 'We+could+not+log+you+in.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 133, 1, 'No+account+exists+by+that+username.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 134, 1, 'Edit My Account Information', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 135, 1, 'Make the necessary changes to your information below. Click the checkbox next to each piece of information that you would like to be displayed on your Sellers Other Ads page. ', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 136, 1, 'Username', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 137, 1, 'Email+address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 138, 1, 'Company+name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 139, 1, 'Business+type', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 140, 1, 'First+name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 141, 1, 'Last+name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 142, 1, 'Address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 143, 1, 'Address+line+2', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 144, 1, 'City', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 145, 1, 'State%2FProvince', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 146, 1, 'Zip+Code', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 147, 1, 'Country', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 148, 1, 'Phone', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 149, 1, 'Phone+2', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 150, 1, 'Fax', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 151, 1, 'Url', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 152, 1, 'Login Password Request', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 153, 1, 'Below is the login information your requested:', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 155, 1, 'Change+Password+Form', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 156, 1, 'Enter+the+new+password+twice+to+verify+it+and+press+submit', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 157, 1, 'Password+verification', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 158, 1, 'Please+retry+changing+your+password.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 159, 1, 'submit my changes', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 160, 1, 'You+are+currently+logged+in.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 161, 1, 'click+here+to+logout', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 163, 1, 'Your+ad+filter+returned+a+match%21', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 164, 1, 'An+ad+filter+has+returned+a+result%21', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 165, 1, 'date+created', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 166, 1, 'terms+searched+for%3A', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 167, 1, 'Click+on+the+following+link+or+cut+and+paste+it+into+your+browser+to+see+the+ad+%28select+the+entire+link+when+cutting+and+pasting+to+make+sure+you+have+the+entire+link%29%3A', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 168, 1, 'Please+fill+in+the+form+below+to+complete+your+registration+and+begin+taking+full+advantage+of+what+our+site+has+to+offer+its+members.+Best+of+all...registration+is+FREE%21%3CBR%3E%3CBR%3E', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 169, 1, 'Registration+Details', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 170, 1, 'Business', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 171, 1, 'Individual', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 172, 1, 'Company+Name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 173, 1, 'Address:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 174, 1, 'Address 2:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 175, 1, 'City:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 176, 1, 'Country:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 177, 1, 'State:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 178, 1, 'Zip Code:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 179, 1, 'Phone:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 180, 1, 'Phone 2:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 181, 1, 'Fax:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 182, 1, 'First Name:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 183, 1, 'Last Name:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 184, 1, 'Email Address:', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 185, 1, 'Website Domain:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 187, 1, 'Please enter a username and password that will be used for this site.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 188, 1, 'Username:', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 189, 1, 'Password:', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 190, 1, 'Reenter Password:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 191, 1, 'Agree to User Agreement?', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 192, 1, 'yes', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 193, 1, 'no', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 196, 1, 'Registration+Confirmation', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 197, 1, 'Your registration is complete! Welcome to our classifieds pages. Login now and get started!', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 198, 1, 'Welcome', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 199, 1, 'Congratulations! You have completed the registration process. Your logged in get started!', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 200, 1, 'registration+confirmation+not+successful+message', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 201, 1, 'registration+confirmation+error+introduction', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 202, 1, 'Please+select+a+state', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 203, 1, 'Please+select+a+country', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 204, 1, 'Registration+Confirmation', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 205, 1, 'Your+Registration+is+almost+complete.+Please+check+your+email.+We+have+just+sent+you+an+email+containing+a+link.+Click+on+this+link+or+cut+and+paste+it+into+a+browser.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 206, 1, '6 to 12 characters (letters numbers and no spaces)', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 207, 1, 'The+username+you+are+trying+to+use+already+exists+please+try+again.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 208, 1, 'Welcome', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 209, 1, 'Thank+you+for+registering+with+us.+Here+is+the+information+we+received.', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 270, 1, 'Photo', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 210, 1, 'Thank+you+for+your+decision+to+register+with+us.', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 211, 1, 'For your protection your account will not be activated until you reply to this email by cutting and pasting the following link into your browser''s address field.', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 212, 1, 'If you did not apply for the account please ignore this message.', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 213, 1, 'Your+registration+has+already+been+confirmed+or+your+confirmation+has+expired.+You+will+have+to+reregister.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 214, 1, '6 to 12 characters (letters numbers and no spaces)', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 215, 1, 'Your+passwords+did+not+match+-+please+reenter+both.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 216, 1, 'Once you have read, understand and accept our Registration Agreement - click here.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 217, 1, 'Your+username+has+been+taken+before+you+could+confirm+your+registration.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 218, 1, 'Please+enter+an+email+address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 219, 1, 'Please+enter+your+city', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 220, 1, 'Please+enter+company+name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 221, 1, 'Please+enter+your+first+name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 222, 1, 'Please+enter+your+last+name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 223, 1, 'Please+enter+your+street+address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 224, 1, 'This+email+address+is+already+in+use.+Please+enter+a+different+one.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 225, 1, 'Please+retype+your+email+address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 226, 1, 'Please+choose+your+state', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 227, 1, 'Please+enter+your+zip+code', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 228, 1, 'Please+enter+your+phone+number', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 229, 1, 'internal+confirmation+error+message', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 230, 1, 'internal+registration+error+message', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 231, 1, 'Place an Ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 232, 1, 'Please+choose+a+country+from+the+list', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 233, 1, 'URL', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 234, 1, 'Please+enter+your+second+contact+number', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 235, 1, 'Please+enter+your+fax+number', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 236, 1, 'Please+enter+the+url+to+your+website', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 237, 1, 'Submit', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 238, 1, 'Successful+Registration%21', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 239, 1, 'Photo Upload', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 240, 1, 'Use this page to upload photos that will be displayed within your ad. Click the Browse... button to upload an image from your pc.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 241, 1, 'image+url+to+use', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 242, 1, '%3CDIV%3E%3CSPAN+style%3D%22FONT-WEIGHT%3A+bold%22%3E%3CBR%3Eupload+image%28s%29+to+use+in+your+ad%3A%3C%2FSPAN%3E%3C%2FDIV%3E', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 243, 1, 'enter+image+information', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 244, 1, 'enter+no+images+for+my+classified+ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 245, 1, 'edit+image+selection', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 246, 1, 'click+for+larger+image', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 247, 1, 'You+are+about+to+send+a+message+to+yourself%21%21%21%21%21%21', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 248, 1, 'IMPORTANT: You must reply through the user administration messaging tool to keep your email address private from this individual.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 249, 1, 'The+sender+has+chosen+to+keep+their+identity+private.+To+respond+to+this+message+please+log-in+and+open+your+messaging+facility+in+the+user+administration+section.+Then+click+reply+for+this+communication.', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 269, 1, 'Entered', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 250, 1, 'Your+message+has+been+sent+successfully.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 251, 1, 'Date Received:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 252, 1, 'Regarding Ad:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 253, 1, 'Your Reply:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 254, 1, 'Please enter your message here.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 255, 1, 'Message Settings', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 256, 1, 'Please select the communication setting that best suits your needs. You may come back and change this selection at any time you choose.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 257, 1, 'Public Communication', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 258, 1, 'Expose my email address to users and communicate through email only. You will not receive any messages through this messaging system.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 261, 1, 'Private Communication', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 262, 1, '<b>Do not expose my email address to other users of this site.</b> If you select this setting, you will receive messages in two ways...via email and via this messaging system. You can then choose which method to reply with. If you would like to keep your email address private, simply use this messaging to reply to your buyer''s inquiry.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 268, 1, 'Description', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 263, 1, 'My+Active+Ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 264, 1, 'The table below contains a list of your currently active ads on this site. You can perform various actions to your ads by using the provided links for each ad.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 265, 1, 'Title', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 266, 1, 'Date+started', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 267, 1, 'Date+ends', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 271, 1, 'Number of times viewed:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 273, 1, 'Ad Approval', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 274, 1, 'Please+review+the+following+information+that+you+entered+for+your+classified+%22ad%22.++If+everything+is+correct+click+the+%22approve%22+link.++If+you+want+to+change+the+details%2C+images+or+category+click+on+the+appropriate+links.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 275, 1, 'search+titles', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 276, 1, 'and+descriptions', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 277, 1, 'by+zip+code', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 278, 1, 'by+country', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 279, 1, 'search', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 280, 1, 'by+category', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 281, 1, 'and subcategories also', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 282, 1, 'search', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (5, 283, 1, 'my expired ads&nbsp;&nbsp;&nbsp;:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (5, 284, 1, 'my info&nbsp;&nbsp;&nbsp;:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (5, 285, 1, 'ad+filters', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (5, 286, 1, 'messaging&nbsp;&nbsp;&nbsp;&nbsp;:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 287, 1, '<br><img src=images/misc/btn_user_my_acct.gif border=0>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 288, 1, 'Add an Ad Filter', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 289, 1, '%3CIMG+alt%3D%22%22+src%3D%22images%2Fcategories%2Fcheckmark.gif%22+border%3D0%3E%26nbsp%3B+my+favorite+ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 290, 1, '<div align=center><br><br><b>You currently have no favorite ads saved.</b><br><br><br></div>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 291, 1, 'date+added+to+favorites', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 292, 1, 'date+ad+started', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 293, 1, 'classified+title', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 294, 1, 'delete', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 295, 1, 'add to favorites', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 540, 1, 'Reenter Email Address:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 296, 1, 'You+must+be+logged+in+to+use+the+favorites+list.++If+you+have+an+account+login+using+the+link+above.++If+you+don%5C%27t+have+an+account+please+register', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (5, 297, 1, 'my+favorites', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 298, 1, 'Name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 299, 1, 'Date Registered', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 300, 1, 'edit my account information', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 301, 1, 'match+whole+words', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 302, 1, 'partial+word+match', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 303, 1, '<br><br>start new search', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 304, 1, 'Your+search+returned+no+matching+results.+Please+try+modifying+your+search.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 305, 1, 'Search+Results', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 306, 1, 'Title', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 311, 1, 'language', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (11, 307, 1, 'Select a Site Language', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (11, 308, 1, 'This site has been translated to more than one language. Please select your language from the list below. The next time you return to this site, we will automatically display the language you choose.<br><br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (11, 309, 1, 'Select a Language: ', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (11, 310, 1, 'save+language+choice', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 312, 1, 'My Account Information', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 313, 1, 'This page indicates the information that we currently have on file for you. If you need to make any changes, please do so by clicking the link below.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 314, 1, 'My+Expired+Ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 315, 1, 'The table below contains a list of your expired auctions. They will remain in the list and viewable on this site for 30 days after they expire, after which time they cannot be retrieved.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 316, 1, 'view', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 317, 1, 'In+the+first+section+of+the+place+your+ad+process+you+will+be+asked+to+find+the+category+to+place+your+ad+in.++', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 318, 1, 'Category:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 319, 1, 'Ad #:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 320, 1, 'Times Viewed:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 321, 1, 'Date Started:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 322, 1, 'Date Ended:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 323, 1, 'Reason+Ad+Ended', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 324, 1, 'Location:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 325, 1, 'Description:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 326, 1, 'back+to+expired+ads+list', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 327, 1, 'Expired+Ad+Detail', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 328, 1, 'This+is+the+detail+of+one+of+your+expired+ads.++The+images+or+their+references+were+removed+when+the+ad+expired.++The+reason+and+date+the+ad+expired+are+listed+in+the+details+below.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 329, 1, 'The+category+you+have+chosen+has+a+subcategory.++Please+choose+one+of+the+subcategories+if+your+item+will+fit+better+in+one+of+those+than+in+the+current+category.++Better+placement+ensures+that+it+is+easier+for+your+ad+to+be+found.++Ads+in+subcategories+a', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 330, 1, 'Tell-a-Friend Form', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 331, 1, 'Please fill in the form fields below and we will forward your comments and a link to this ad to your friend.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 332, 1, 'your+friend%27s+name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 333, 1, 'your+friends+email+address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 334, 1, 'your+name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 335, 1, 'your+email+address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 336, 1, 'Comments', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 337, 1, 'check+the+format+of+your+email+address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 338, 1, 'Fill+in+the+form+fields+properly+and+an+email+will+be+sent+to+the+email+address+you+specify.++The+email+will+contain+your+name+and+email+address+so+they+can+quickly+reply+to+you.++It+will+also+contain+some+information+on+the+classified+ad+you+were+just+vi', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 339, 1, 'click-to-zoom', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 340, 1, 'My+Ad+Filters', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 341, 1, 'The+ad+filters+allow+you+to+search+the+new+classifeds+ads+as+they+are+entered+into+the+site.++It+is+just+like+performing+a+search+but+only+on+the+new+classified+ads+as+they+are+entered.++When+a+new+classified+ad+matches+one+of+your+search+terms+you+will+be+notified+by+an+email+of+the+match.++The+email+will+contain+the+information+on+the+ad+entered+and+a+link+to+view+the+new+ad.%3Cbr%3E%3Cbr%3E%0D%0A%0D%0ALearn+first+when+a+new+ad+within+your+interest+has+been+added.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 342, 1, 'Below+are+the+current+ad+filters+you+have+active.++When+a+new+ad+is+entered+it+will+checked+against+the+filters+below.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 343, 1, 'tell-a-friend', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 344, 1, 'Your+message+has+been+sent+notifying+your+friend+of+the+classified+ad.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 345, 1, 'Message+from+', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 346, 1, 'Hello+', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 347, 1, 'thought you would be interested in this item at this Classifieds Site: ', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 348, 1, 'Senders+Comments%3A', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 349, 1, 'Click on the above link or cut and paste it into your browser.', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 350, 1, 'back+to+classified+ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 351, 1, 'My+Favorite+Ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 352, 1, 'The+following+is+the+list+of+ads+you+have+chosen+to+keep+track+of.++To+remove+an+ad+from+your+list+click+the+delete+link+in+the+corresponding+row.++An+ad+will+automatically+be+removed+from+your+list+once+it+has+been+removed+from+the+site.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 353, 1, 'If+you+need+to+remember+a+few+ads+so+you+can+return+to+them+later+add+them+to+your+favorites+list.++To+add+a+classified+ad+to+your+favorites+click+on+the+add+to+favorites+link+at+the+bottom+of+every+classified+ad.++The+link+only+appears+if+you+are+logged+into+the+site.++But+once+saved+the+classified+ad+will+stay+in+your+favorites+list+until+you+remove+it+or+the+classified+ad+is+removed+from+the+site.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 354, 1, 'My Messages', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 355, 1, 'Below are the current messages you have open.  To view and/or reply to a message click the view link.  To remove a message from the list click the delete link.  The method you receive messages through this site is controlled by the settings you have chosen in your message settings menu.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 356, 1, 'The communications list is a list of the current communications sent by other users of the site concerning ads you have placed or replys you have chosen to take through private communications.  <br><br>\r\nThis site has three different levels of communication privacy.  <br><br>PRIVATE - This keeps your email address invisible to other users on the site.  All communications sent to you are kept in the list below with this setting.  By answering communications privately through this site you keep your email address private.  <br><br>PUBLIC - This setting makes your email address public.  All communications are sent to your email address.<br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 395, 1, 'Search+the+classifieds+using+the+country+field.+This+search+box+is+populated+with+the+countries+dynamically+generated+from+states+with+classified+ads+listed+in+them.+Whichever+country+appears+in+the+dropdown+is+an+actual+country+that+a+classified+ad+is+located+in.+If+the+country+is+not+in+the+list+there+is+no+use+searching+for+classified+ads+in+that+country.+%0D%0A%3Cbr%3E%3Cbr%3E%0D%0AResults+are+returned+if+they+match+the+condition+of+your+search+text+statement+and+having+this+country+or+if+only+a+country+is+chosen+then+every+classified+ad+within+that+country+is+returned.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 396, 1, 'Search+the+classifieds+using+the+zip+field.+This+search+box+is+populated+with+the+zip+dynamically+generated+from+classified+ads+listed+in+them.+Whichever+zip+appears+in+the+dropdown+is+an+actual+zip+that+a+classified+ad+is+located+in.+If+the+zip+is+not+in+the+list+there+is+no+use+searching+for+classified+ads+in+that+zip.+%3Cbr%3E%3Cbr%3E%0D%0AResults+are+returned+if+they+match+the+condition+of+your+search+text+statement+and+having+this+zip+or+if+only+a+zip+is+chosen+then+every+classified+ad+within+that+zip+is+returned.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 357, 1, 'message+from', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 358, 1, 'subject', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 359, 1, 'date+received', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 360, 1, 'message settings', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 361, 1, 'Verify+Classified+Ad+Removal', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 362, 1, 'Please+verify+that+you+want+to+remove+your+classified+ad+from+our+site.++Also+please+enter+a+reason+you+would+like+the+classified+ad+removed.++When+through+click+the+%5C%22verify+classified+ad+removal%5C%22+button+at+the+bottom+of+the+form+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 393, 1, 'by+state%2Fprovince', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 394, 1, 'Search+the+classifieds+using+the+states%2Fprovinces+field.+This+search+box+is+populated+with+the+states%2Fprovinces+dynamically+generated+from+states%2Fprovinces+with+classified+ads+listed+in+them.+Whichever+state+appears+in+the+dropdown+is+an+actual+state+that+a+classified+ad+is+located+in.+If+the+state+is+not+in+the+list+there+is+no+use+searching+for+classified+ads+in+that+state.+%3Cbr%3E%3Cbr%3E%0D%0AResults+are+returned+if+they+match+the+condition+of+your+search+text+statement+and+having+this+state%2Fprovince+or+if+only+a+state%2Fprovince+is+chosen+then+every+classified+ad+within+that+state+is+returned.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 363, 1, 'short+reason+for+removal', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 392, 1, 'Choose a category you would like to search using your search terms above.  To search that categories subcategories also leave the ''subcategories also'' checkbox.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 364, 1, 'Verify+Classified+Ad+Removal', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 391, 1, 'Entered', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 365, 1, 'Your+ad+has+been+successfully+removed', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 390, 1, 'Description', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 366, 1, 'back+to+my+current+ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 389, 1, 'Photo', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 367, 1, 'Edit+My+Classified+Ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 368, 1, 'Use the links at the bottom of this page to edit the data of your ad.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 369, 1, 'edit+classified+ad+details', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 370, 1, 'edit+classified+ad+images', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 371, 1, 'edit+classified+ad+category', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 372, 1, 'Classified+Ad+Detail+Edit+Form', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 373, 1, 'Make+the+necessary+changes+to+the+information+fields+below+then+click+the+save+changes+button', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 374, 1, 'back+to+edit+classified+ad+home', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 385, 1, 'Editing+images+for%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 375, 1, 'save+changes', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 388, 1, 'Email+Address%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 376, 1, 'Edit+Classified+Ad+Category+Form', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 377, 1, 'Please choose the category you wish to move this classified ad to:<br><br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 378, 1, 'Category: ', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 379, 1, 'Edit+Classified+Ad+Images+Form', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 387, 1, 'Please fill in the blank below with your email address. Then click on the button at the bottom of the form. Your password will be sent to the email address that we have on file.<br><br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 380, 1, 'Delete+the+images+you+wish+to+remove+by+clicking+the+delete+button+next+to+the+image+you+wish+to+delete.++Add+an+image+by+filling+the+url+information+of+the+image+or+choosing+an+image+to+upload+then+click+the+save+changes+button.++When+through+editing+the+images+click+the+link+back+to+the+edit+ad+home+page.++', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 383, 1, 'images+to+upload', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 384, 1, 'Add+Images+to+Classified+Ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 386, 1, 'Lost+Password+Form', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 381, 1, 'delete+image', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 382, 1, 'image+url+to+use', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 398, 1, 'more+results+%3E', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 399, 1, 'page', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 400, 1, '+of+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 401, 1, 'You cannot edit another users ads!!!!!!!!!!', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 402, 1, '', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 403, 1, '', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 404, 1, 'Optional Questions:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 405, 1, 'These+questions+are+here+for+your+convenience.++They+help+you+enter+clear+concise+and+easy+to+peruse+information.++These+fields+%28if+used%29+will+be+placed+in+their+own+fields+so+that+this+information+will+be+quickly+found+by+people+browsing+your+ads.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 406, 1, 'or', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 407, 1, 'Current+Images', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 408, 1, 'click+to+delete', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 409, 1, 'Back+to+Approval+Form', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 418, 1, '<div align=center><br><br><b>You have no expired ads.</b><br><br><br></div>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 417, 1, 'view+registration+agreement', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 416, 1, 'This+is+the+registration+agreement.+This+is+the+registration+agreement.%0D%0AThis+is+the+registration+agreement.+This+is+the+registration+agreement.%0D%0AThis+is+the+registration+agreement.+Go+to+the+Admin+-%26gt%3B+Site%0D%0ALanguages+%26amp%3B+text+-%26gt%3B+English+-%26gt%3B+Registration+Section+to+edit%0D%0Athis+text.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 415, 1, 'click+to+end+registration', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 414, 1, 'Restart+Registration', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 413, 1, 'Your+registration+information+has+been+discarded%21', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 412, 1, 'Your+Previous+Reply', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 411, 1, 'Message:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 410, 1, 'contact seller', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 539, 1, 'Your+email+verification+does+not+match.++Try+again.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 419, 1, 'Password', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 420, 1, 'Verify Password', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 421, 1, 'send+password', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 422, 1, 'please+fill+in+the+company+field', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 423, 1, 'please+fill+in+your+first+name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 424, 1, 'please+fill+in+your+last+name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 425, 1, 'please+fill+in+your+address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 426, 1, 'please+use+another+email+address%2C+that+email+address+is+already+in+use', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 427, 1, 'please+retype+your+email+address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 428, 1, 'please+enter+a+valid+email+address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 429, 1, 'please+fill+in+your+city', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 430, 1, 'please+choose+your+state', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 431, 1, 'please+choose+your+country', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 432, 1, 'please+fill+in+your+zip', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 433, 1, 'please+fill+in+your+phone+number', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 434, 1, 'please+choose+your+second+phone+number', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 435, 1, 'please+fill+in+your+fax', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 436, 1, 'please+fill+in+your+url', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 437, 1, 'please+try+your+password+again+%286-12+characters+of+letters+or+numbers%29', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 438, 1, 'Your+account+is+locked.+Contact+the+administrator.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 439, 1, 'Enter+criteria+to+search+for.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 440, 1, 'Registration', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 441, 1, 'Do+you+have+a+registration+code+to+enter%3F+To+take+advantage+of+a+special+promotion+you+encountered+for+this+site+enter+that+registration+code+below.+If+you+do+not+enter+a+code%2C+you+will+automatically+fall+under+the+%3CA+href%3D%22index.php%3Fa%3D22%26amp%3Bb%3D7%22%3ESilver+Plan%3C%2FA%3E.%26nbsp%3BOr+to+review+our+current+Price+Plans%2C+please+%3CA+href%3D%22index.php%3Fa%3D22%26amp%3Bb%3D7%22%3EClick+Here%3C%2FA%3E.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 442, 1, 'The+registration+code+you+have+entered+is+not+valid.++Please+check+the+promotion+code+in+the+promotion+material+you+encountered+and+try+typing+it+in+again+in+the+space+below+and+clicking+enter+registration+code.++If+you+just+wish+to+continue+with+registration+without+entering+a+registration+code+click+the+continue+button+below.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 443, 1, 'Registration+Code%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 444, 1, 'Enter+Registration+Code', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 445, 1, 'No Code - Click here', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 446, 1, 'Charge+per+picture', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 447, 1, 'Transaction+Detail', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 448, 1, 'Please use this page to verify the accuracy of your personal information, select any Ad Extras and then choose a payment method. When you are satisfied with your selections, please click the button at the bottom of the page to access the Final Approval Page.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 449, 1, 'Personal Info', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 450, 1, 'Name:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 451, 1, 'Address:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 452, 1, 'Company Name:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 453, 1, 'You have reached the maximum number of ads you can place on this site.  To enter another ad you must expire one of your current ads or wait till one of the expires.  Contact the site administrator if you have any questions.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 454, 1, 'Ad / Ad Extras Cost ', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 455, 1, 'Below+is+the+cost+for+placing+this+ad+and+the+cost+for+the+purchase+of+extra+features.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 456, 1, 'The+current+is+free+due+to+a+credit', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 457, 1, 'Cost+of+Ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 458, 1, 'Ad+placement+per+subscription', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 459, 1, 'Cost+of+subscription+for+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 460, 1, 'Ad+Title+Bolding', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 461, 1, 'The+bolding+option+for+your+ad+will+display+the+title+of+your+ad+in+bold+letters+while+users+are+browsing+the+classified+ads.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 462, 1, 'Payment Choices', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 463, 1, 'Cash', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 464, 1, 'Once+you+approve+your+ad+in+the+next+step+it+will+be+placed+on+hold+until+you+can+pay+for+your+ad+in+cash.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 465, 1, 'Money Order', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 466, 1, 'When+you+choose+money+order+as+your+method+of+payment+your+classified+ad+is+placed+on+hold+until+the+administrator+approves+your+ad+through+acceptance+of+payment.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 467, 1, 'Check', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 496, 1, 'edit+your+personal+information', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 468, 1, 'If+you+payment+choice+is+check+your+classified+ad+will+be+placed+on+hold+until+the+administrator+approves+the+classified+ad+through+acceptance+of+payment.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 469, 1, 'Credit Card', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 494, 1, 'Submit', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 495, 1, 'Email Address:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 470, 1, 'If+your+payment+choice+is+credit+card+your+credit+card+information+is+taken+at+right+and+the+transaction+processed+immediately.+If+your+approved+your+classified+ad+will+be+live+immediately.+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 471, 1, 'PayPal', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 472, 1, 'If your payment choice is PayPal your transaction will be placed on hold until we receive information from PayPal that payment has been made.  This procedure will happen automatically.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 473, 1, 'credit card number:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 474, 1, 'expiration+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 475, 1, 'Final+Approval+Page', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 476, 1, 'This is the final step in placing your ad on our site. Please review the transaction totals below and then click the button to submit your ad.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 477, 1, 'Transaction Totals', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 478, 1, 'Cost of Ad:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 479, 1, 'Cost of Subscription:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 480, 1, 'Bolding Cost:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 481, 1, 'Better Placement Cost:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 482, 1, 'Featured Ad Cost:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 483, 1, 'Subtotal:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 484, 1, 'Once you approve the transaction below your ad will be placed on hold until we receive your payment.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 485, 1, 'When+you+approve+the+transaction+by+clicking+the+approve+button+your+credit+card+will+be+billed+for+the+fees+below.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 486, 1, 'Once you approve your classified ad by clicking the approve button below you will be taken to PayPal to complete your transaction.  Once you have completed your transaction our system will be notified by a signal from PayPal and your classified ad will become live.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 487, 1, 'Once you approve the transaction below your ad will be placed on hold until we receive your payment.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 488, 1, 'Once you approve the transaction below your ad will be placed on hold until we receive your payment.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 489, 1, 'Approve Transaction', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 490, 1, 'Ad+Better+Placement', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 491, 1, 'The+better+placement+option+for+your+ad+will+display+your+ad+in+the+top+of+the+category+results+while+users+are+browsing+the+classified+ads.+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 492, 1, 'Featured+Ad+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 493, 1, 'Featured Ads are displayed in a separate table at the top of results pages. Add this feature if you would like to maximize your ad''s exposure on our site.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 497, 1, 'Please+choose+a+method+of+payment', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 498, 1, 'Please+Re-enter+your+Credit+Card+Number', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 499, 1, 'credit+card+expired', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 500, 1, 'Tax:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 501, 1, 'Total:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 502, 1, 'edit+transaction+details', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 503, 1, 'Ad / Ad Extras', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 504, 1, 'Cost', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 505, 1, 'Congratulations on successfully entering your ads information.  Your ad will be placed on hold for 30 days until we receive your cash payment at our offices.  After 30 days your ad will be deleted and cannot be retrieved. Your ad''s details are displayed below:<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 506, 1, 'Congratulations on successfully entering your ads information. Your ad will be placed on hold for 30 days until we receive your money order payment at our offices. After 30 days your ad will be deleted and cannot be retrieved. Your ad''s details are displayed below:<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 507, 1, 'Congratulations on successfully entering your ads information. Your ad will be placed on hold for 30 days until we receive your check at our offices. After 30 days your ad will be deleted and cannot be retrieved. Your ad''s details are displayed below:<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 508, 1, 'Contact Seller Form', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 509, 1, 'Fill in the form below with your return email address and your question.  Click the button at the bottom of the form and we will forward your message to the seller.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 510, 1, 'Seller', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 511, 1, 'Regarding Ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 512, 1, 'Your Email Address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 513, 1, 'Your Comments', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 514, 1, 'Below+is+an+inquiry+about+your+classified+ad', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 515, 1, 'Your+Message+has+been+forwarded+to+the+seller', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 516, 1, 'Your+credit+card+has+been+approved.++Your+ad+should+be+live.++Click+below+to+see+it.+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 517, 1, 'The+credit+card+you+supplied+was+not+approved.++Please+try+your+transaction+again+with+a+different+credit+card+or+form+of+payment', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 518, 1, 'There was an error in your credit card transaction.  Please contact the administrator or try your transaction again later.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 519, 1, 'Price', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 520, 1, 'Price:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 521, 1, 'Price:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 522, 1, 'Edit+Your+Personal+Info', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 523, 1, 'Click here to try your transaction again.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 524, 1, 'Featured+Ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 525, 1, 'Newest+Ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 526, 1, 'Featured+Ads+in', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 527, 1, 'Price', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 528, 1, 'submit+query', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 529, 1, 'send+your+message', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 530, 1, '%2A+required+fields', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 531, 1, 'Charge for Photos used:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 532, 1, 'There is a charge for each photo you have uploaded within your ad.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 533, 1, 'advanced+search', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 536, 1, '%3CSPAN+style%3D%22FONT-WEIGHT%3A+bold%22%3Emaxi%3CSPAN+style%3D%22FONT-WEIGHT%3A+bold%22%3Emum+upload+size%26nbsp%3B+per%26nbsp%3Bimage%26nbsp%3B%26nbsp%3B%28bytes%29%3C%2FSPAN%3E%3C%2FSPAN%3E', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 535, 1, 'We received no image.  Please check the file size and type. Please try again.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 534, 1, 'An+image+you+have+uploaded+is+too+large.++Please+try+another.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 538, 1, 'Submit', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 537, 1, 'Please+fill+in+the+price+field', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 541, 1, 'The+category+you+chose+is+not+a+lowest+category.++Please+choose+a+category+with+an+%2A.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 542, 1, 'Choose Category', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 543, 1, 'Please+choose+a+category+with+an+%2A+next+to+it.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 544, 1, 'save+communication+selection', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 545, 1, 'Price', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 578, 1, 'Please+enter+a+valid+expiration+date', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 579, 1, 'You+must+click+yes+to+renew+your+ad+to+continue.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 580, 1, 'Currency+Option', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 574, 1, 'If+you+wish+to+use+Paypal+to+pay+for+the+renewal+of+your+ad+select+paypal.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 575, 1, 'Renew+My+Ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 576, 1, 'Back+to+My+Current+Ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 577, 1, 'Please+enter+a+valid+credit+card+number', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 570, 1, 'If+paying+by+credit+card+use+this+method+of+payment.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 571, 1, 'credit+card+number', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 572, 1, 'Expiration', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 573, 1, 'Paypal', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 569, 1, 'Credit+Card', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 567, 1, '<br>Please choose a method of payment from the options below.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 568, 1, 'Please+choose+a+method+of+payment+to+move+to+the+next+step', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 566, 1, 'You+will+not+be+able+to+renew+your+ad.++', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 565, 1, 'You+have+the+ability+to+renew+your+ad+but+you+cannot+at+this+time.++Check+back+closer+to+the+end+of+the+ad.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 563, 1, 'yes', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 564, 1, 'Do+Not+Renew', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 561, 1, '<b>Cost to Renew Your Ad</b>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 562, 1, 'Your+ad+will+be+renewed+for+the+length+of+time+you+used+for+your+original+ad.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 560, 1, 'You can renew your ad using this form. Click yes to renew your ad, select a payment method, and then click the submit button at the bottom.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 559, 1, 'Renew+Your+Ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 558, 1, 'Your+ad+is+about+to+expire.++Below+is+the+direct+link+to+the+ad+about+to+expire.', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 557, 1, 'Hello+', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 556, 1, 'Your+ad+is+about+to+expire', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 555, 1, 'Your+classified+ad+was+successfully+placed+on+our+site.++Below+is+a+link+directly+to+it.', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 553, 1, 'Your+Ad+Was+Successfully+Placed', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 554, 1, 'Congratulations+', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 552, 1, 'Optional+search+criteria+for+the+', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 551, 1, 'Main', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 549, 1, 'All+Categories', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 550, 1, 'All+Categories', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 548, 1, 'save filter', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 547, 1, '<div align=center><br><br><b>You currently have no messages awaiting you.</b><br><br><br></div>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 546, 1, 'Days', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 619, 1, 'no', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 620, 1, 'We+look+forward+to+a+long+and+positive+relationship.', 1);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 621, 1, 'choose+max+distance+in+miles', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (8, 622, 1, 'distance+in+miles', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 623, 1, 'USD', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 624, 1, '%24', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 617, 1, 'company+name', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 618, 1, 'yes', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 616, 1, 'User+Choice', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (10, 615, 1, 'Your+registration+is+almost+done...', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 614, 1, 'All ads for: ', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 612, 1, 'seller''s other ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 613, 1, 'email%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 611, 1, 'expose+in+other+ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 608, 1, 'secondary+phone%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 609, 1, 'fax%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 610, 1, 'url%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 605, 1, 'city%2C+state+and+zip%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 606, 1, 'country%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 607, 1, 'phone%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 603, 1, 'name%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 604, 1, 'address%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 602, 1, 'This+sellers+contact+information', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 601, 1, 'Below is the status of your ad renewal request.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 600, 1, 'Ad Renewal Status', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 599, 1, 'Your ad was not successfully renewed.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 596, 1, 'Ad Renewal:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 597, 1, 'Approve+Ad+Renewal', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 598, 1, 'Your+ad+has+been+successfully+renewed.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 595, 1, 'Cost', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 594, 1, 'Charges', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 593, 1, 'Please review the renewal charges below and click the approve button.<br><br>', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 592, 1, 'Renewal+Approval', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 591, 1, 'Explanation+and+instruction+on+how+to+complete+your+transaction+through+Worldpay', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 590, 1, 'renew', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 588, 1, 'The+image+you+tried+to+upload+was+too+large.++Please+try+another.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 587, 1, 'We+received+no+image+data.++Please+try+again.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 586, 1, 'If+you+wish+to+pay+using+Worldpay+click+the+bubble+to+the+right', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 585, 1, 'Worldpay', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 584, 1, 'currency+type', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 589, 1, 'Newest+Ads+In', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 582, 1, 'Title:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 581, 1, 'Price:', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 625, 1, 'Communication+Email+Address%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 626, 1, 'Please+reenter+the+email+where+you+wish+to+receive+communications+about+this+ad.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 627, 1, 'Email+Communication+Address', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 628, 1, 'Please+enter+a+valid+email+address+for+users+to+communicate+with+for+this+ad', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 629, 1, 'yes', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 630, 1, 'no', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 631, 1, 'advanced+search', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 632, 1, 'my+account', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 633, 1, '%7C', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 634, 1, 'Welcome%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 635, 1, 'Guest', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 636, 1, 'home', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 637, 1, 'Quick+Search%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (4, 638, 1, 'go', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (9, 639, 1, 'Your+login+information+has+been+sent%21', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 640, 1, 'Hottest+Ads', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 641, 1, 'Number+of+credits%3A', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 642, 1, 'Pedigree+Information', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 643, 1, 'Enter+the+pedigree+specific+information+below.', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 644, 1, 'Sire+Information', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 645, 1, 'Dam+Information', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 646, 1, 'Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 647, 1, 'Sire+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 648, 1, 'Sire+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 649, 1, 'Sire+Sire+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 650, 1, 'Sire+Sire+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 651, 1, 'Sire+Dam+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 652, 1, 'Sire+Dam+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 653, 1, 'Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 654, 1, 'Dam+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 655, 1, 'Dam+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 656, 1, 'Dam+Sire+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 657, 1, 'Dam+Sire+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 658, 1, 'Dam+Dam+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 659, 1, 'Dam+Dam+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 660, 1, 'Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (1, 661, 1, 'Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 662, 1, 'Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 663, 1, 'Sire+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 664, 1, 'Sire+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 665, 1, 'Sire+Sire+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 666, 1, 'Sire+Sire+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 667, 1, 'Sire+Dam+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 668, 1, 'Sire+Dam+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 669, 1, 'Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 670, 1, 'Dam+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 671, 1, 'Dam+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 672, 1, 'Dam+Sire+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 673, 1, 'Dam+Sire+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 674, 1, 'Dam+Dam+Sire', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (6, 675, 1, 'Dam+Dam+Dam', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 676, 1, 'Renewal+Cost', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 677, 1, 'Featured+Ad+Cost', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 678, 1, 'Image+Cost', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 679, 1, 'Bolding+Cost', 0);
INSERT INTO `geodesic_text_languages_messages` VALUES (2, 680, 1, 'Better+Placement+Cost', 0);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_text_messages`
# 

DROP TABLE IF EXISTS `geodesic_text_messages`;
CREATE TABLE `geodesic_text_messages` (
  `text_id` int(11) NOT NULL auto_increment,
  `text_page_id` smallint(6) NOT NULL default '0',
  `text_page_sub_id` int(11) NOT NULL default '0',
  `text_name` varchar(100) NOT NULL default '',
  `text_description` tinytext NOT NULL,
  `text` tinytext NOT NULL,
  `input_type` tinyint(4) NOT NULL default '0',
  `language_id` int(11) NOT NULL default '1',
  `email_text` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`text_id`),
  KEY `text_id_2` (`text_id`)
) TYPE=MyISAM AUTO_INCREMENT=682 ;

# 
# Dumping data for table `geodesic_text_messages`
# 

INSERT INTO `geodesic_text_messages` VALUES (6, 3, 0, 'admin+email+link+in+footer', 'Placed+at+the+bottom+of+footer+on+all+pages.++Email+link+to+allow+clients+easy+access+to+communicate+with+admin.', 'contact admin', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (7, 4, 0, 'login+link', 'This+text+appears+in+the+menu+bar+and+displays+the+login+text.', 'login', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (8, 4, 0, 'logout+link', 'This+text+appears+in+the+menu+bar+and+displays+the+logout+text.', 'logout', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (9, 4, 0, 'register+link', 'This+text+appears+in+the+menu+bar+and+displays+the+register+link+text+to+those+not+logged+in.', 'register', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (10, 4, 0, 'browse+link', 'This+text+appears+in+the+menu+bar+and+displays+the+browse+classifieds+link+text.', 'browse', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (11, 4, 0, 'lost+password+link', 'This+text+appears+in+the+menu+bar+and+displays+the+lost+password+link+text+to+those+not+logged+in.', 'lost password', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (12, 4, 0, 'user+admin+link', 'This+text+appears+in+the+menu+bar+and+displays+the+user+admin+link+text+to+those+logged+in.', 'user admin', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (13, 4, 0, 'Place+an+ad+link', 'This+text+appears+in+the+menu+bar+and+displays+the+place+an+ad+link+text+to+those+logged+in.', 'place an ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (14, 5, 0, 'my+active+ads+link', 'This+text+appears+in+the+user+menu+bar+and+displays+the+your+current+active+ads+text+link.', 'your current ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (15, 5, 0, 'edit+my+user+info+link', 'This+text+appears+in+the+user+menu+bar+and+displays+the+edit+user+info+link+text+to+those+that+are+logged+in.', 'edit your info', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (16, 5, 0, 'ad+filter+link', 'This+text+appears+in+the+user+menu+bar+and+displays+the+ad+filter+user+admin+link+text+to+those+that+are+logged+in.', 'ad filters', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (17, 2, 15, 'Item+Category+tag', 'Category+field+label+on+the+approval+page', 'Item Category', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (19, 2, 15, 'Seller+tag', 'Seller+field+label+on+the+approval+page.', 'Seller', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (20, 2, 15, 'Duration+tag', 'Field+label+for+the+classified+ad+duration+field+on+the+approval+page.', 'Duration of ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (21, 2, 15, 'days+tag', 'Days+label+appearing+in+ad+duration+field+on+approval+page.', 'days', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (22, 2, 13, 'Classified+description+tag', 'Description+field+label.', 'Ad Description', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (23, 2, 13, 'country+tag', 'Country+field+label', 'Choose a Country', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (24, 2, 42, 'successful+tag', 'Message+displayed+when+a+user+successfully+enters+a+new+classified+ad.', 'You successfully entered your classified ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (25, 2, 42, 'Click+here+to+view+your+ad', 'Link+displayed+to+the+new+classified+ad+when+the+user+successfully+completed+the+place+an+ad+process.', 'Click here to view your ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (26, 2, 12, 'Please+choose+the+main+category+that+your+ad+will', '', 'Please choose the main category that your ad will appear in.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (27, 2, 12, '+category+has', 'Used+in+the+statement+explaining+that+the+category+chosen+has+subcategories+so+would+the+user+choose+one+of+the+subcategories+or+affirm+placement+in+the+current+category.', ' category has ', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (28, 2, 12, 'Subcategories', 'Used+in+the+statement+explaining+that+the+category+chosen+has+subcategories+so+would+the+user+choose+one+of+the+subcategories+or+affirm+placement+in+the+current+category.', ' subcategories<br>They are listed below. Please choose category you wish to place your ad in.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (29, 2, 12, 'The', 'Determiner+appearing+before+the+category+name+when+the+category+chosen+has+subcategories.', 'The ', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (30, 2, 12, 'subcategories+to+choose+from%3A', 'Used+in+the+statement+explaining+that+the+category+chosen+has+subcategories+so+would+the+user+choose+one+of+the+subcategories+or+affirm+placement+in+the+current+category.', 'sub categories to choose from:', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (31, 2, 12, '+Category', 'Used+in+the+statement+explaining+that+the+category+chosen+has+subcategories+so+would+the+user+choose+one+of+the+subcategories+or+affirm+placement+in+the+current+category.', ' category', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (32, 2, 12, 'Or+just+place+your+item+in+the', 'Used+in+the+statement+explaining+that+the+category+chosen+has+subcategories+so+would+the+user+choose+one+of+the+subcategories+or+affirm+placement+in+the+current+category.', 'Or just place your item in the ', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (33, 2, 13, 'Please+give+your+ad+a+title', 'Error+message+when+user+does+not+enter+a+title+for+their+classified+ad', 'Please give your ad a title', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (34, 2, 13, 'Please+choose+the+state+your+item+is+located+in', 'Error+message+when+the+user+forgets+to+choose+a+state+for+their+ad.', 'Please choose the state your item is located in', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (35, 2, 13, 'Please+fill+in+a+zip+code+for+the+classified+ad', 'Error+message+appearing+when+user+forgets+to+enter+a+zip+code+for+their+classified+ad.', 'Please fill in a zip code for the classified ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (36, 2, 13, 'Please+enter+a+valid+zip+code', 'Error+message+when+user+enters+a+zip+code+but+the+format+is+wrong', 'Please enter a valid zip code', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (37, 2, 13, 'Please+give+a+brief+description+for+your+classifie', 'Error+message+displayed+when+the+user+fails+to+enter+a+description+for+their+classified+ad.', 'Please give a brief description for your classified ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (40, 2, 14, 'url+of+image+you+would+like+to+use', 'Column+label+for+image+field+column+where+the+user+enters+a+url+address+to+the+image+they+wish+to+display+within+their+classified+ad.', 'url of image you would like to use', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (43, 2, 13, 'zip+code', 'zip+field+label+in+the+details+page.', 'zip code', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (44, 2, 13, 'zip+code+where+the+ad+item+is+located', 'Further+description+for+the+zip+code+field.', 'zip code where the ad item is located', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (45, 2, 13, 'Classified+Title', 'Label+for+the+Classified+Title+field.', 'Classified Title', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (46, 2, 13, 'this+will+appear+in+any+listing+of+classified', 'further+explanation+of+the+classified+as+title+field', 'this will appear in any listing of classified', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (47, 2, 13, 'classified+ad+Length', 'Label+for+the+field+containing+the+length+of+the+classified+ad', 'classified ad Length', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (48, 2, 13, 'length+of+time+in+days+your+classified+will+run', 'additional+description+for+classified+ad+length+field', 'length of time in days your classified will run', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (49, 2, 13, 'Choose+a+state%2Fprovince', 'First+choice+in+the+state+dropdown+to+remind+the+user+what+the+field+is+for.', 'Choose a state', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (50, 2, 15, 'approve', 'Classified+ad+approval+link+at+the+bottom+of+the+approval+page.++Once+clicked+the+classified+ad+will+be+entered+into+the+site', 'approve', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (51, 2, 15, 'edit+category', 'Link+allowing+the+user+to+edit+their+classified+ads+category+from+the+classified+approval+page.', 'edit category', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (52, 2, 15, 'edit+images', 'Link+at+the+bottom+of+the+approval+page+allowing+the+user+to+change+the+images+they+currently+have.', 'edit images', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (53, 2, 15, 'edit+details', 'Link+at+the+bottom+of+the+approval+page+allowing+the+user+to+edit+the+details+of+the+classified+ad+they+are+entering', 'edit details', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (54, 2, 15, 'Main', 'Main+category+label+in+the+category+tree+detail+at+the+top+of+the+approval+page.', 'Main', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (56, 2, 0, 'Could+not+complete+your+request', '', 'Could not complete your request', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (57, 2, 0, 'There+was+an+internal+error+in+trying+to+complete+', '', 'There was an internal error in trying to complete your request', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (58, 2, 0, 'There+are+no+main+categories', 'Error+message+only+appearing+when+no+categories+have+been+entered+and+someone+is+trying+to+enter+a+classified+ad.', 'There are no main categories', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (59, 2, 13, 'Please+fill+out+the+details+of+your+ad', '', 'Please fill out the details of your ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (60, 2, 0, 'Image+url', '', 'Image url', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (61, 2, 15, 'Classified+ad+location', 'Location+field+label+on+the+approval+page.', 'Classified ad location', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (62, 2, 0, 'Your+attempt+to+add+a+new+classified+ad+has+been+s', 'Message+displayed+when+user+ends+the+place+an+ad+process+prematurely.', 'Your attempt to add a new classified ad has been stopped.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (63, 2, 42, 'Click+here+to+add+another+classified+ad', 'Link+text+appearing+after+place+an+ad+completion+allowing+the+user+to+add+another+classified+ad', 'Click here to add another classified ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (64, 2, 0, 'Click+here+to+end+this+sell+process', 'Link+appearing+throughout+the+place+an+ad+process+allowing+the+user+to+end+the+current+place+an+ad+process.', 'Click here to end this sell process', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (67, 1, 1, 'Ad+Category', 'Labels+the+current+classified+%22ad%22+category.+It+is+displayed+in+the+category+tree+and+while+browsing+all+categories.', 'Classified category', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (68, 1, 1, 'Seller', 'Field+identifier+in+the+classified+ad+display+page+for+the+Seller%27s+username.', 'Seller', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (69, 1, 1, 'Ad+started', 'Label+appears+next+the+field+that+displays+the+date+the+classified+ad+was+placed+by+the+seller+on+the+page+displaying+the+classified+ad.++', 'Ad started', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (70, 1, 1, 'Time+until+ad+ends', 'Field+identifier+on+the+display+classified+ad+page+next+to+the+time+displayed+until+the+classified+ad+ends', 'Time remaining', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (71, 1, 1, 'Location', 'This+is+the+geographical+location+of+the+seller.', 'Location', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (72, 1, 1, 'Description', 'Description+of+%22ad%22.', 'Description', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (73, 1, 1, 'Classified+ID', 'This+is+the+ID+number+that+GeoClassifieds+generates+and+assigns+to+each+%22ad%22+that+is+created.', 'Classified id', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (74, 1, 2, 'Subcategories+of', 'Appears+while+browsing+the+classified+ad+categories.++Comes+just+before+the+name+of+the+current+category+when+there+are+subcategories+to+be+displayed+in+a+list.', 'Subcategories of ', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (75, 1, 2, 'There+are+no+classified+ads+in+this+category', 'This+is+the+message+that+is+displayed+when+there+are+no+entries+in+the+selected+category.', 'There are no classified ads in this category', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (79, 1, 2, 'Main', 'Category+home+label+in+the+browse+category+pages+category+tree+map', 'Main', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (80, 1, 0, 'Internal+browse+error%21', '', 'Internal browse error!', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (81, 1, 1, 'Not+enough+information+to+display+the+classified+ad.', 'Error+message+displayed+when+an+attempt+has+been+made+to+view+a+classified+ad+but+there+was+not+enough+information+to+complete+the+request.', 'Not enough information to display the classified ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (82, 1, 43, 'Welcome+to+our+Classified+Ads', 'Statement+that+is+displayed+at+the+top+of+the+front+page+of+the+classifieds+site.', 'Welcome to our Classified Ads test', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (83, 1, 43, 'Browse+the+main+categories+below.', 'Invitation+to+browse+categories+appears+on+Browse+home+below+the+welcome+message.', 'Start browsing the main categories below', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (84, 1, 0, 'There+are+no+categories+yet.', 'Displayed+if+no+categories+have+been+added+to+an+installation+yet+but+browsing+has+started.', 'There are no categories yet', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (85, 1, 0, 'Not+enough+information+to+browse+the+Classifieds.', '', 'Not enough information to browse the Classifieds', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (86, 1, 2, 'Title+Column+Header', 'This+text+appears+in+the+header+of+the+column+displaying+the+ads+title+while+browsing+', 'Classifed ad title', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (87, 1, 2, 'There+are+no+subcategories+to', 'While+browsing+the+classifieds+categories+this+message+will+appear+just+before+the+name+of+the+category+that+has+no+subcategories.', 'There are no subcategories to ', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (88, 6, 41, 'User+Management+Home', 'Contains+links+to+all+user+admin+activities', 'User Management', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (89, 6, 41, 'User+Management+Home+Instructions', 'Appears+above+the+list+of+links+allowing+the+user+to+perform+actions+on+their+account', 'Click on the link at left to perform actions on your account.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (90, 6, 3, 'edit', 'in+list+active+ads+table', 'edit', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (91, 6, 3, 'remove', 'in+list+active+ads+table', 'remove', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (92, 6, 3, 'You+currently+have+no+active+ads', 'in+list+current+ads+table', 'You have no ads currently live', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (93, 6, 41, 'list+current+ads', 'in+user+management+menu', 'list current ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (94, 6, 41, 'list+expired+ads', 'in+user+management+menu', 'list expired ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (95, 6, 41, 'my+current+information', 'in+user+management+menu', 'your current information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (96, 6, 41, 'place+new+ad', 'in+user+management+menu', 'place new ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (97, 6, 41, 'ad+filters', 'in+user+management+menu', 'ad filters', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (98, 6, 41, 'communications', 'in+user+management+menu', 'communications', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (99, 6, 41, 'communication+configuration', 'in+user+management+menu', 'communication configuration', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (100, 6, 6, 'You+currently+have+no+ad+filters', 'in+the+display+ad+filters+page', 'You currently have no ad filters', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (101, 6, 6, 'categories+to+search', 'in+the+display+ad+filters+page', 'categories to search', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (102, 6, 6, 'search+terms+to+use', 'in+the+display+ad+filters+page', 'search terms to use', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (103, 6, 6, 'date+created', 'column+header+that+labels+the+date+an+ad+filter+was+created+in+the+display+ad+filters+page', 'date created', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (104, 6, 6, 'delete', 'in+the+display+ad+filters+page', 'delete', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (105, 6, 6, 'remove+all+ad+filters', 'in+the+display+ad+filters+page', 'remove all ad filters', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (106, 6, 6, '+and+subcategories', 'in+the+display+ad+filters+page', ' and subcategories', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (107, 6, 7, 'Add+New+Filter+Form', 'in+the+add+new+filter+form+page', 'Add New Filter Form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (108, 6, 7, 'instructions+on+adding+a+new+filter', 'instructions+on+adding+a+new+filter+at+the+top+of+ad+new+filter+form', 'instructions on adding a new filter', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (109, 6, 7, 'category+to+search', 'in+the+add+new+filter+form+page+as+a+label+to+choose+a+category+to+monito', 'category to search', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (110, 6, 7, 'search+subcategories+also', 'in+the+add+new+filter+form+page+as+a+label+to+search+subcategories+also', 'search subcategories also', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (111, 6, 7, 'terms+to+monitor+for', 'in+the+add+new+filter+form+page+labels+the+field+of+terms+to+search+for', 'terms to monitor for', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (112, 6, 7, 'separate+multiple+search+terms+with+a+comma', 'in+the+add+new+filter+form+page+as+an+additional+label+to+search+terms+fields+for+better+description', 'separate multiple search terms with a comma', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (681, 1, 1, 'Extra+Checkbox+Label', '', 'Yes', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (118, 6, 9, 'message+from', 'label+for+the+message+from+field+of+the+communication+form', 'message from', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (119, 8, 0, 'Search+the+Classified+Ads', 'title+of+search+page+on+client+side', 'Search the Classified Ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (120, 8, 16, 'Search+page+instructions', 'The+instructions+that+appear+at+the+top+of+the+search+page', 'Search page instructions', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (121, 8, 16, 'Search+for', 'label+for+the+text+search+field+on+the+search+page', 'Search for', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (122, 8, 16, 'Search+text+box+help', 'help+info+for+the+box+that+will+contain+the+text+to+search+the+classifieds+for.', 'separate multiple either,or terms with a , or or. separate multiple condition with and.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (123, 9, 0, 'Login+Form', 'login+form+title', 'Login Form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (124, 9, 0, 'login+instructions', 'login+instructions+displayed+at+the+top+of+the+login+form', 'Please enter your username and password in the fields below.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (125, 9, 0, 'username', 'label+for+username+field+in+the+login+form.++This+also+labels+the+username+in+the+email+sent+to+a+user+who+has+lost+their+password.', 'username', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (126, 9, 0, 'password', 'label+for+password+field+in+login+form.++This+also+labels+the+password+in+the+email+sent+to+users+who+have+lost+their+password.++This+label+also+appears+as+the+password+field+label+in+the+change+password+form', 'password', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (127, 9, 0, 'Login', 'label+for+login+button+on+login+form', 'Login', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (128, 9, 0, 'Please+enter+your+username', 'error+message+when+username+field+is+blank', 'Please enter your username', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (129, 9, 0, 'Please+enter+your+password', 'error+message+when+password+field+is+blank', 'Please enter your password', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (130, 9, 0, 'Please+re-enter+your+username', 'error+message+when+username+field+is+in+a+wrong+format', 'Please re-enter your username', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (131, 9, 0, 'Please+re-enter+your+password', 'error+message+when+password+field+is+in+a+wrong+format', 'Please re-enter your password', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (132, 9, 0, 'We+could+not+log+you+in', 'error+message+after+login+failure', 'We could not log you in', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (133, 9, 0, 'No+account+exists+by+that+username', 'error+message+after+username+could+not+be+found', 'No account exists by that username', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (134, 6, 19, 'Edit+Userdata+Form', 'title+of+userdata+edit+form', 'Edit Userdata Form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (135, 6, 19, 'Edit+userdata+form+instructions', 'instructions+appearing+at+the+top+of+the+edit+user+data+form', 'Edit userdata form instructions', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (136, 6, 19, 'username', 'username+field+in+the+edit+user+data+form', 'username', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (137, 6, 19, 'Email+address', 'label+for+email+address+field+in+edit+user+data+form', 'Email address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (138, 6, 19, 'Company+name', 'label+for+company+name+field+in+edit+user+data+form', 'Company name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (139, 6, 19, 'Business+type', 'label+for+Business+type+field+in+edit+user+data+form', 'Business type', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (140, 6, 19, 'Firstname', 'label+for+Firstname+field+in+edit+user+data+form', 'First name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (141, 6, 19, 'Lastname', 'Label+for+lastname+field+in+edit+user+data+form.', 'Last name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (142, 6, 19, 'Address', 'label+for+Address+field+in+edit+user+data+form', 'Address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (143, 6, 19, 'Address+line+2', 'label+for+Address+line+2+field+in+edit+user+data+form', 'Address line 2', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (144, 6, 19, 'City', 'label+for+City+field+in+edit+user+data+form', 'City', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (145, 6, 19, 'State%2FProvince', 'Label+for+state%2Fprovince+field+in+edit+user+data+form.', 'State', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (146, 6, 19, 'Zip+Code', 'label+for+Zip+Code+field+in+edit+user+data+form', 'Zip Code', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (147, 6, 19, 'Country', 'label+for+Country+field+in+edit+user+data+form', 'Country', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (148, 6, 19, 'Phone', 'label+for+Phone+field+in+edit+user+data+form', 'Phone', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (149, 6, 19, 'Phone+2', 'label+for+Phone+2+field+in+edit+user+data+form', 'Phone 2', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (150, 6, 19, 'Fax', 'label+for+Fax+field+in+edit+user+data+form', 'Fax', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (151, 6, 19, 'Url', 'label+for+Url+field+in+edit+user+data+form', 'Url', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (152, 9, 32, 'lost+password+email+subject', 'lost+password+email+subject', 'lost password email subject', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (153, 9, 32, 'Here+is+the+misplaced+login+information', 'appears+in+the+email+of+lost+password+email+sent+to+registrant', 'Here is the missplaced login information', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (155, 9, 33, 'Change+Password+Form', 'title+of+Change+Password+Form+', 'Change Password Form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (156, 9, 33, 'Change+Password+Form+Instructions', 'This+text+is+the+instructions+to+enter+password+twice+on+change+password+form+saving+their+new+password.', 'Enter the new password twice to verify it and press submit', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (157, 9, 33, 'Password+verification', 'label+for+password+verifier+in+change+password+form', 'password verification', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (158, 9, 33, 'Please+retry+changing+your+password.', 'error+message+displayed+when+unable+to+change+password', 'Please retry changing your password.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (159, 6, 19, 'submit+your+changes', 'button+text+on+change+password+form', 'submit your changes', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (160, 9, 0, 'You+are+currently+logged+in.', 'message+given+when+attempting+to+login%2Flogout+when+user+is+currently+logged+in', 'You are already logged in.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (161, 9, 0, 'click+here+to+logout', 'link+text+allowing+logout+of+site', 'click here to logout', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (163, 6, 22, 'Your+ad+filter+returned+a+match', 'subject+line+of+email+sent+when+an+ad+filter+returns+a+match', 'Your+ad+filter+returned+a+match', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (164, 6, 22, 'An+ad+filter+has+returned+a+result', 'first+paragraph+of+email+sent+when+an+ad+filter+returns+a+match', 'An+ad+filter+has+returned+a+result', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (165, 6, 22, 'date+created%3A', 'label+for+the+date+the+ad+filter+returning+a+match+was+created', 'date+created%3A', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (166, 6, 22, 'terms+searched+for%3A', 'appears+as+label+for+search+terms+in+email+sent+when+a+match+is+returned', 'terms+searched+for%3A', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (167, 6, 22, 'click+on+the+following+link+to+see+the+ad%3A', 'label+for+link+to+classified+ad+in+email+sent+when+an+ad+filter+returned+a+match', 'click+on+the+following+link+to+see+the+ad%3A', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (168, 10, 34, 'Registration+Instructions+page+1', 'The+instructions+that+appear+at+the+top+of+registration+page+1', 'Registration+Instructions+page+1', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (169, 10, 34, 'Registration+Title', 'Registration+Page+Title', 'Registration+Title', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (170, 10, 34, 'business+label+for+business+type', 'appears+for+business+label+of+the+business+type+selection+of+registration+page+1', 'business', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (171, 10, 34, 'individual+of+business+type', 'label+for+the+individual+side+of+the+business+type+selection+on+registration+page+1', 'individual', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (172, 10, 34, 'company+name', 'label+for+company+name+field+in+registration+page+1+form', 'company+name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (173, 10, 34, 'address', 'label+for+Address+field+in+registration+page+1+form', 'address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (174, 10, 34, 'address+2', 'label+for+Address+line+2+field+in+registration+page+1+form', 'address+2', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (175, 10, 34, 'city', 'label+for+city+field+in+registration+page+1+form', 'city', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (176, 10, 34, 'country+field+label', 'label+for+country+field+in+registration+page+1+form', 'country', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (177, 10, 34, 'state+field+label', 'label+for+state+field+in+registration+page+1+form', 'state', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (178, 10, 34, 'zip+code+field', 'label+for+zip+code+field+in+registration+page+1+form', 'zip+code', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (179, 10, 34, 'first+contact+number', 'label+for+first+contact+number+field+in+registration+page+1+form', 'first+contact+number', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (180, 10, 34, 'second+contact+number', 'label+for+second+contact+number+field+in+registration+page+1+form', 'second+contact+number', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (181, 10, 34, 'fax+number', 'label+for+fax+number+field+in+registration+page+1+form', 'fax+number', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (182, 10, 34, 'first+name', 'label+for+first+name+field+in+registration+page+1+form', 'first+name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (183, 10, 34, 'last+name', 'label+for+last+name+field+in+registration+page+1+form', 'last+name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (184, 10, 34, 'email+address', 'label+for+email+address+field+in+registration+page+1+form', 'email+address', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (185, 10, 34, 'website+url+address', 'label+for+website+url+address+field+in+registration+page+1+form', 'website+url+address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (187, 10, 34, 'Registration+Step+2+Instructions', 'instruction+for+registration+page+2', 'Registration+Step+2+Instructions', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (188, 10, 34, 'username+field', 'label+for+username+field+in+registration+page+2+form', 'username', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (189, 10, 34, 'password+field', 'label+for+password+field+in+registration+page+2+form', 'password', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (190, 10, 34, 'password+confirm+field', 'label+for+password+confirm+field+in+registration+page+2+form', 'password+confirm', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (191, 10, 34, 'agree+to+user+agreement', 'label+for+agreement+confirm+on+registration+page+2', 'agree+to+user+agreement', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (192, 10, 34, 'yes+of+agreement', 'yes+label+for+agreement+acceptance+on+registration+page+2', 'yes', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (193, 10, 34, 'no+to+agreement', 'no+part+of+agreement+acceptance+on+registration+page+2', 'no', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (620, 10, 39, 'registration successful text footer', 'text at the bottom of the success email', 'success+footer', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (197, 10, 39, 'registration success email body', '', 'registration+confirmation+email+body', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (618, 2, 45, 'Yes+to+Extra+Feature', '', 'Yes', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (198, 10, 39, 'Welcome+line+of+success+email', '%5C%22hello+%5C%22+tag+that+appears+before+firstname+in+first+line+of+email+body+sent+upon+registration+completion', 'Welcome', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (199, 10, 37, 'registration+confirmation+success+message', 'message+body+sent+upon+successful+completion+of+registration+%28after+%5C%22Welcome+username%5C%22+line%29', 'registration+confirmation+success+message', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (200, 10, 0, 'registration+confirmation+not+successful+message', 'unsuccessful+registration+message+displayed+on+site+when+confirmation+attempt+was+unsuccessful.+usually+a+problem+with+the+link+used+%28incomplete%3F%29', 'registration+confirmation+not+successful+message', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (201, 10, 0, 'registration+confirmation+error+introduction', 'title+of+page+displaying+the+error+in+confirmation', 'registration+confirmation+error+introduction', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (202, 10, 34, 'Please+select+a+state', 'error+message+when+state+was+not+chosen+on+registration+page+1', 'Please+select+a+state', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (203, 10, 34, 'Please+select+a+country', 'error+message+when+country+was+not+chosen+on+registration+page+1', 'Please+select+a+country', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (204, 10, 36, 'Registration+Confirmation+page+title', 'title+of+page+asking+user+to+confirm+their+registration+by+checking+their+email+and+responding', 'Registration+Confirmation', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (205, 10, 36, 'Registration+Confirmation+page+instructions', 'instruction+on+registration+confirmation+page+asking+registrant+to+respond+to+email+just+sent', 'Your+Registration+is+almost+complete.++Please+check+your+email.++We+have+just+sent+you+an+email+containing+a+link.+Click+on+this+link+or+cut+and+paste+it+into+a+browser.++Once+your+email+has+been+confirmed+your+registration+will+be+complete.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (206, 10, 34, 'Your+username+is+must+be+at+least+6+characters+and', 'instructions+explaining+basic+format+for+password', 'Your+username+is+must+be+at+least+6+characters+and+no+longer+than+12+%28no+spaces%29', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (207, 10, 34, 'The+username+you+are+trying+to+use+already+exists%25', 'message+notifying+registrant+that+username+is+taken...try+another+one', 'The+username+you+are+trying+to+use+already+exists%2C+please+try+again', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (208, 10, 38, 'welcome text before username', '', 'Welcome', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (621, 8, 16, 'zip code distance dropdown', 'first value in zip code distance dropdown displayed when zip code distance calculator is installed', 'choose+max+distance+in+miles', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (209, 10, 38, 'welcome paragraph after username', '', 'Thank+you+for+registering+with+us%21%5C%5Cn%5C%5CrHere+is+the+information+we+recieved+%3A', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (619, 2, 45, 'No+to+Extra+Feature', '', 'No', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (210, 10, 39, 'successful email subject', '', 'Thank+you+for+your+decision+to+register+with+', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (211, 10, 38, 'confirm+email+link+instruction', 'appears+in+confirmation+email+just+before+link+that+will+confirm+registration', 'For+your+protection%2C+your+account+will+not+be+activated+until+you+%5C%5Cnreply+to+this+email+by+cutting+and+pasting+the+following+link+and+entering+it+into+a+browsers+address+field%3A', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (212, 10, 38, 'ignore+if+not+applied+message', 'message+at+end+of+confirmation+email+message+asking+recipient+to+ignore+message+if+they+did+not+apply', 'If+you+did+not+apply+for+the+account+please+ignore+this+message.', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (213, 10, 37, 'already+confirmed+or+registration+expired', 'message+shown+on+site+that+says+they+have+already+completed+registration+or+there+registration+attempt+has+expired', 'Your+registration+has+already+been+confirmed+or+your+confirmation+has+expired.++You+will+have+to+reregister.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (214, 10, 34, 'password+error+message', 'explains+the+correct+format+for+a+possible+password+once+an+error+has+been+made', 'Your+password+must+be+at+least+6+characters+and+no+longer+than+12', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (215, 10, 34, 'password+verifier+error+message', 'error+message+displayed+when+password+verifier+did+not+match+password', 'Your+password+verifier+did+not+match+your++password%2C+please+reenter+both', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (216, 10, 34, 'Once+you+have+read%2Cunderstand+and+accept+our+Use', 'label+saying+to+click+here+when+user+agreement+accepted', 'Once+you+have+read%2Cunderstand+and+accept+our+User+Agreement+click+here', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (217, 10, 37, 'username+taken+before+confirmation+message', 'if+username+is+taken+before+registrant+can+confirm+registration+this+is+the+error+message+they+receive', 'Your+username+has+been+taken+before+you+could+confirm+your+registration.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (218, 10, 34, 'Please+enter+an+email+address+error+message', 'error+message+if+email+address+is+required+and+left+blank+during+registration', 'Please+enter+an+email+address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (219, 10, 34, 'Please+enter+your+city+information+error+message', 'error+message+displayed+when+city+field+is+required+but+left+empty+during+registration', 'Please+enter+your+city+information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (220, 10, 34, 'Please+enter+company+name+error+message', 'error+message+displayed+when+company+name++field+is+required+but+left+empty+during+registration', 'Please+enter+company+name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (221, 10, 34, 'Please+enter+your+first+name+error+message', 'error+message+displayed+when+first+name+field+is+required+but+left+empty+during+registration', 'Please+enter+your+first+name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (222, 10, 34, 'Please+enter+your+last+name+error+message', 'error+message+displayed+when+last+name+field+is+required+but+left+empty+during+registration', 'Please+enter+your+last+name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (223, 10, 34, 'Please+enter+your+street+address+information+error', 'error+message+displayed+when+street+address+field+is+required+but+left+empty+during+registration', 'Please+enter+your+street+address+information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (224, 10, 34, 'This+email+address+already+exists+error+message', 'error+message+displayed+when+email+address+chosen+already+exists+in+the+database+and+asks+user+to+choose+another', 'This+email+address+already+exists+please+choose+another', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (225, 10, 34, 'Please+retype+your+email+address+error+message', 'error+message+displayed+when+email+address+field+is+required+but+left+empty+during+registration+or+in+a+bad+format', 'Please+retype+your+email+address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (226, 10, 34, 'Please+choose+your+state+error+message', 'error+message+displayed+when+state+field+is+required+but+left+empty+during+registration', 'Please+choose+your+state+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (227, 10, 34, 'Please+enter+your+zip+code+information+error+messa', 'error+message+displayed+when+zip+code+field+is+required+but+left+empty+during+registration', 'Please+enter+your+zip+code+information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (228, 10, 34, 'Please+enter+your+phone+number+error+message', 'error+message+displayed+when+phone+number+field+is+required+but+left+empty+during+registration', 'Please+enter+your+phone+number', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (229, 10, 0, 'internal+confirmation+error+message', 'error+message+if+there+is+an+internal+GeoClassifieds+error+during+confirmation', 'internal+confirmation+error+message', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (230, 10, 0, 'internal+registration+error+message', 'error+message+displayed+because+of+an+internal+GeoClassifieds+error+during+registration', 'internal+registration+error+message', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (231, 2, 0, 'Title+of+all+%22place+an+ad%22+pages', 'Title+appears+at+the+top+of+all+pages+during+the+%22place+an+ad%22+process.', 'Place+Classified+Ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (232, 2, 13, 'Please+choose+a+country+from+the+list', 'error+message+if+a+country+has+not+been+selected', 'Please choose a country from the list', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (233, 2, 13, 'url+field+label', 'when+url+label+is+displayed+this+the+label%3F%3F', 'URL+link', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (234, 10, 34, 'Please+enter+your+second+contact+number', 'error+message+displayed+when+second+contact+number+is+empty+yet+required', 'Please+enter+your+second+contact+number', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (235, 10, 34, 'Please+enter+your+fax+number', 'error+message+displayed+when+fax+field+is+required+but+left+empty+during+registration', 'Please+enter+your+fax+number', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (236, 10, 34, 'Please+enter+the+url+to+your+website', 'error+message+displayed+when+url+field+is+required+but+left+empty+during+registration', 'Please+enter+the+url+to+your+website', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (237, 10, 34, 'submit+information+button+on+registration+page+2', 'text+that+appears+in+the+button+the+sends+information+on+registration+page+2', 'send+information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (238, 10, 37, 'registration+success+title', 'title+of+the+page+that+displays+the+successful+registration+message', 'registration+success+title+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (239, 2, 14, 'Image+form+title', 'title+of+the+page+that+collects+images+within+the+place+an+ad+process', 'Collect+Images+Form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (240, 2, 14, 'instructions+for+image+collection+form', 'instructions+at+the+top+of+the+image+collection+form+explaining+the+ways+to+display+images+on+their+classified+ad.', 'instructions+to+collect+image+data.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (241, 2, 14, 'image+url+column+label', 'appears+as+the+image+url+column+header+in+the+image+collection+form+of+the+place+an+ad+process', 'image+url+to+use', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (242, 2, 14, 'choose+a+file+to+upload+label', 'appears+in+the+upload+file+column+header+in+the+image+collection+form+of+the+place+an+ad+process+', 'upload+image+to+use', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (243, 2, 14, 'enter+image+info+button', 'text+appearing+in+the+button+that+allows+the+user+to+enter+image+information', 'enter+image+information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (244, 2, 14, 'no+images+to+enter+button', 'appears+in+the+button+allowing+the+ad+poster+to+skip+adding+images+to+a+classifed+ad', 'enter+no+images+for+my+classified+ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (245, 2, 15, 'edit+images+link+text', 'appears+at+the+bottom+of+ad+approval+page+allowing+the+client+to+edit+present+and+add+new+ones+to+the+present+ad', 'delete+present+and+add+new+images', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (246, 2, 15, 'link+text+saying+to+click+for+larger+image', 'appears+below+image+if+image+displayed+is+smaller+than+original+image+referenced+or+uploaded+during+the+place+an+ad+process', 'click for larger image', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (247, 1, 48, 'about+to+send+a+message+to+yourself', 'appears+when+the+logged+in+user+clicks+on+a+link+to+send+themselves+a+message', 'You are about to send a message to yourself!', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (248, 6, 0, 'privacy+warning+at+bottom+of+email', 'This+warning+is+attached+to+the+bottom+of+emails+sent+to+users+using+semi-private+communications', 'IMPORTANT%3A+You+must+reply+through+the+user+administration+private+message+center+to+keep+your+email+address+private+from+this+individual', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (249, 6, 0, 'How+to+reply+to+private+sender+message', 'This+message+appears+in+the+email+sent+to+receiver+when+sender+has+private+communication+turned+on.++Tells+how+to+reply+to+the+sender.', 'The+sender+has+chosen+to+keep+their+identity+private.++To+respond+to+this+message+go+to+your+private+messaging+center+in+the+user+administration+section+and+click+reply+for+this+communication+in+the+communications+listed.', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (250, 6, 0, 'communication+sent+successfully+message', 'Displayed+when+a+message+has+been+sent+successfully', 'Your communication has been sent successfully.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (251, 6, 9, 'date+received+label+for+email+display', 'This+is+the+label+for+the+date+field+a+message+was+received+', 'date received', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (252, 6, 9, 'regarding+ad+label', 'This+is+the+label+for+the+regarding+ad+field+a+message+was+regarding', 'regarding ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (253, 6, 9, 'your+reply+field+label', 'This+instruction+label+will+be+displayed+above+the+reply+box.', 'your reply', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (254, 6, 9, 'Your+reply+here+message', 'This+is+the+message+that+will+be+displayed+inside+the+reply+box.', 'Your reply here', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (255, 6, 10, 'Communication+Configuration+title+page', 'Title+of+the+page+allowing+user+to+set+their+own+communication+configuration', 'Communication+Configuration', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (256, 6, 10, 'Communication+Configuration+instructions', 'Instructions+appearing+at+top+of+user+communication+configuration', 'Instructions+to+communication+configuration', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (257, 6, 10, 'Public+Communication+label', 'label+for+Public+Communication+choice+in+communication+configuration', 'Public+Communication', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (258, 6, 10, 'Public+Communication+explanation', 'explanation+of+public+communication+choice+in+communication+configuration', 'Expose+your+email+address+to+users+and+communicate+through+email+only.++Do+not+use+the+messaging+system+provided.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (261, 6, 10, 'Completely+Private+Communication+label', 'label+for+completely+private+communication+in+communication+configuration', 'Completely+Private+Communication', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (262, 6, 10, 'Completely+Private+Communication+explanation', 'explanation+of+completely+private+communication+choice+in+communication+configuration', 'Do+not+expose+my+email+account+to+anyone.++I+will+come+back+to+this+site+to+view+and+reply+to+all+of+my+communications.++Use+only+the+messaging+system+provided+on+this+site.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (263, 6, 3, 'My+Active+Classified+Ads+Page+Title', 'Title+to+the+page+that+lists+the+current+active+ads+for+a+user.', 'Your+Currents+Ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (264, 6, 3, 'Your+Current+Classified+Ads+Page+Instructions', 'The+instructions+on+the+page+listing+the+users+current+classified+ads', 'Your+Current+Classified+Ads+Page+Instructions', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (265, 6, 3, 'title+column+label+in+your+current+ads', 'label+for+the+title+column+on+the+page+that+displays+the+users+cureent+classified+ads', 'title', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (266, 6, 3, 'Column+label+for+date+ad+placed', 'Labels+the+column+that+displays+the+starting+date+for+a+users+classified+ad', 'date+started', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (267, 6, 3, 'Date+the+classified+ad+ends', 'Column+header+for+the+date+ends+field+on+the+users+current+ads+page+', 'date+ends', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (268, 1, 2, 'Description+column+header', 'This+text+appears+in+the+column+header+of+the+description+when+browsing+categories+and+admin+has+chosen+to+display.', 'description', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (269, 1, 2, 'Entry+date+column+header', 'This+text+appears+in+the+column+header+of+the+entry+date+when+browsing+categories+and+chosen+to+be+displayed.', 'posted', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (270, 1, 2, 'Photo+icon+column+header', 'This+text+appears+in+the+column+header+of+the+photo+icon+when+browsing+categories+and+admin+has+chosen+to+display', 'photo', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (271, 1, 1, 'Viewed+count+label', 'Appears+next+to+the+number+of+times+an+ad+has+been+viewed+if+the+admin+chooses+to+display+it.', 'viewed%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (273, 2, 15, 'Classified+Ad+Approval+Title', 'Appears+as+the+title+of+the+Approve+your+ad+page', 'Classified+Ad+Final+Approval', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (274, 2, 15, 'Classified+Approval+Page+Instructions', 'instructions+for+the+final+step+in+the+sell+process', 'Review+the+information+below+you+entered+for+your+classified+ad.++If+everything+is+correct+click+the+%5C%22approve%5C%22+link+below.++If+you+want+to+change+the+details%2C+images+or+category+click+on+the+appropriate+links+below.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (275, 8, 16, 'titles+label', 'Label+appearing+next+to+the+titles+checkbox+to+search+through+ad+titles+for+text+entered', 'titles', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (276, 8, 16, 'descriptions+label', 'Label+appearing+next+to+the+descriptions+checkbox+to+search+through+ad+descriptions+for+text+entered', 'descriptions', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (277, 8, 16, 'by+zip+code+label', 'Label+appearing+next+to+the+zip+code+dropdown+to+search+ads+with+the+chosen+zip+code', 'by+zip+code', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (278, 8, 16, 'by+country+label', 'Label+appearing+next+to+the+country+dropdown+to+search+ads+with+the+chosen+country', 'by+country', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (279, 4, 0, 'search+link', 'link+text+to+the+search+page', 'search', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (280, 8, 16, 'by+category+label', 'Label+appearing+next+to+the+categories+dropdown+to+search+ads+within+the+chosen+category%28s%29', 'by+category', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (281, 8, 16, 'subcategories+also+label', 'Label+appearing+next+to+the+subcategories+also+checkbox+to+search+through+ad+belonging+to+chosen+category+and+its+subcategories+for+text+entered', 'subcategories+also', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (282, 8, 16, 'search+button+text', 'text+appearing+in+the+search+button+that+begins+a+clients+search', 'search', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (283, 5, 0, 'my+expired+ads+link', 'link+text+linking+to+the+users+expired+ads', 'expired+ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (284, 5, 0, 'user+current+info+link', 'link+text+linking+to+users+current+personal+information', 'your+info', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (285, 5, 0, 'ad+filters+link', 'link+text+linking+to+the+current+users+ad+filters', 'ad+filters', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (286, 5, 0, 'messaging+link', 'link+text+linking+the+', 'messaging', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (287, 6, 0, 'User+Management+Home+Link+Text', 'link+text+linking+to+the+usermanagement+home+from+various+pages+within+the+user+management+section', 'back+to+User+Management+Home', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (288, 6, 6, 'Add+a+new+ad+filter+link', 'link+text+to+ad+a+new+filter+at+the+top+of+the+current+ad+filters+display+page', 'Add+a+new+ad+filter', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (289, 6, 41, 'Favorites+List+Link', 'link+text+appearing+the+user+management+home+menu+linking+to+this+users+favorites+', 'favorites', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (290, 6, 18, 'No+current+favorites+message', 'This+text+is+displayed+when+the+current+user+chooses+to+display+their+favorites+but+there+are+none+to+list', 'You+currently+have+no+favorite+ads+saved', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (291, 6, 18, 'date+added+to+favorites+column+header', 'This+text+appears+in+the+column+header+of+the+favorites+list+labelling+the+date+that+the+adjacent+classified+ad+was+added+to+the+favorites+list', 'date+added+to+favorites', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (292, 6, 18, 'date+added+started+in+favorites+list+column+header', 'This+text+appears+in+the+column+header+of+the+favorites+list+labelling+the+date+that+the+adjacent+classified+ad+was+added+to+the+site', 'date+ad+started', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (293, 6, 18, 'title+column+label+in+user+favorites+list', 'This+text+appears+in+the+column+header+of+the+favorites+list+labelling+the+title+of+the+classified+ad+added+to+the+favorites+list', 'classified+title', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (294, 6, 18, 'delete+favorites+text+link', 'This+text+appears+in+the+favorites+list+as+a+link+to+the+delete+the+adjacent+classified+ad+from+the+favorites+list', 'delete', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (295, 1, 1, 'Add+to+favorites+list+link', 'Link+text+appearing+at+the+bottom+of+the+classified+ad+displayed+to+allow+the+current+user+the+ability+to+add+this+ad+to+their+favorites+list', 'add+to+favorites', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (296, 6, 18, 'Must+be+logged+in+to+use+favorites+message', 'Message+displayed+when+user+attempts+to+add+to+their+favorites+list+and+they+are+not+logged+in.', 'You+must+be+logged+in+to+use+the+favorites+list.++If+you+have+an+account+login+using+the+link+above.++If+you+don%5C%27t+have+an+account+please+register', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (297, 5, 0, 'my+favorites+link', 'text+link+appearing+in+the+user+menu+bar+linking+to+the+current+users+list+of+favorites', 'favorites', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (298, 6, 19, 'name+field+label', 'This+label+appears+in+the+name+field+of+the+user+data+display+page', 'name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (299, 6, 19, 'date+registered+field', 'This+text+labels+the+date+registered+field+on+the+page+that+displays+the+current+users+info', 'date+registered', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (300, 6, 19, 'edit+your+information+link', 'This+text+appears+in+the+link+at+the+bottom+of+the+user+informaion+page+allowing+the+current+user+to+edit+their+information', 'edit+your+information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (301, 8, 16, 'match+whole+words+radio+button+label', 'next+to+the+radio+button+that+allows+the+user+to+search+for+whole+word+matches', 'match+whole+words', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (302, 8, 16, 'partial+word+match+radio+button+label', 'label+for+radio+button+allowing+the+user+to+select+partial+word+matches+in+their+search+results', 'partial+word+match', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (303, 8, 17, 'start+new+search+link', 'link+text+linking+the+client+to+the+starting+search+page', 'start+new+search', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (304, 8, 17, 'no+search+results+message', 'Message+telling+the+client+that+their+search+returned+no+results', 'Your+search+returned+no', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (305, 8, 17, 'search+results+page+title', 'Title+of+page+that+displays+the+results+of+a+users+search', 'Search+Results', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (306, 8, 17, 'title+column+label+in+search+results', 'This+text+appears+in+the+column+header+of+the+title+when+displaying+the+results+of+a+search', 'title', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (307, 11, 0, 'Language+form+title', 'Title+of+the+page+allowing+the+user+to+choose+from+one+of+the+current+languages', 'Choose+the+Site+Language', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (308, 11, 0, 'Language+form+instructions', 'This+text+instructs+the+user+on+how+to+choose+a+different+language+to+view+their+site+in.', 'Instructions+on+choosing+a+language', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (309, 11, 0, 'language+choice+label', 'This+text+labels+the+dropdown+box+of+language+choices+to+choose+from', 'choose+a+language', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (310, 11, 0, 'save+language+choice+button', 'This+text+appears+in+the+button+a+user+clicks+to+save+their+language+choice.', 'save+language+choice', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (311, 4, 0, 'choose+language+link', 'This+text+links+to+the+choose+language+form', 'language', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (312, 6, 20, 'Display+user+information+title', 'This+text+appears+as+the+title+for+the+page+displaying+the+users+current+information', 'My+Current+Information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (313, 6, 20, 'Display+user+information+instructions', 'This+text+gives+instructions+on+how+to+change+their+personal+information+if+the+user+wishes', 'This+is+your+information+we+currently+have+on+file.++If+you+wish+to+edit+it+click+on+the+%5C%22edit+your+information%5C%22+link+at+the+bottom', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (314, 6, 4, 'Expired+ads+page+title', 'This+is+the+title+of+the+page+displaying+the+current+users+expired+ads', 'My+Expired+Ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (315, 6, 4, 'Expired+ads+instructions', 'instructions+for+current+clients+to+browse+and+view+their+current+ads', 'To+view+your+past+ads+browse+the+list+and+click+the+view+button.++Most+information+is+kept+but+the+images+and+image+references+have+been+removed', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (316, 6, 4, 'view+expired+ad+link', 'This+is+the+text+linking+to+the+expired+ad+of+the+current+user', 'view', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (317, 2, 12, 'Help+box+describing+the+choose+a+category+page', 'This+text+will+appear+in+the+help+box+used+on+the+place+an+ad+choose+category+page', 'In+the+first+section+of+the+place+your+ad+process+you+will+be+asked+to+find+the+category+to+place+your+ad+in.++', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (318, 6, 21, 'Main+category+label', 'This+text+is+the+label+for+the+main+category+in+the+category+tree', 'Main', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (319, 6, 21, 'Classified+id+label', 'This+text+labels+the+classifieds+ads+id.', 'Classified+id', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (320, 6, 21, 'Viewed+count+label', 'This+text+labels+the+count+the+classified+ad+was+viewed.', 'Times+viewed', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (321, 6, 21, 'Date+the+classified+ad+started', 'This+text+labels+the+date+the+classified+ad+started', 'Date+started', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (322, 6, 21, 'Date+ad+ended', 'This+text+labels+the+date+the+classified+ad+ended', 'Date+Ended', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (323, 6, 21, 'Reason+label', 'This+text+labels+the+reason+the+ad+ended.', 'Reason+Ad+Ended', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (324, 6, 21, 'Location+label', 'This+text+labels+the+location+of+the+classified+label', 'Location', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (325, 6, 21, 'Description', 'This+is+the+label+for+the+description+field', 'Description', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (326, 6, 21, 'link+back+to+list+expired+ads', 'This+is+the+text+linking+to+the+expired+ads+list.', 'back+to+expired+ads+list', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (327, 6, 21, 'Expired+ads+page+title', 'Title+of+the+page+displaying+the+expired+ads+detail', 'Expired+Ad+Detail', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (328, 6, 21, 'Expired+ads+help+page', 'This+is+the+help+page+describing+the+expired+ads+detail', 'This+is+the+detail+of+one+of+your+expired+ads.++The+images+or+their+references+were+removed+when+the+ad+expired.++The+reason+and+date+the+ad+expired+are+listed+in+the+details+below.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (329, 2, 12, 'Help+box+describing+the+choose+a+category+section+when+subcategories+exist', 'This+text+appears+on+the+category+selection+only+if+there+are+subcategories+to+the+chosen+category', 'The+category+you+have+chosen+has+a+subcategory.++Please+choose+one+of+the+subcategories+if+your+item+will+fit+better+in+one+of+those+than+in+the+current+category.++Better+placement+ensures+that+it+is+easier+for+your+ad+to+be+found.++Ads+in+subcategories+a', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (330, 1, 23, 'Notify+a+Friend+Form+Title', 'Title+of+the+page+where+a+current+user+can+notify+a+friend+of+a+classified+ad', 'Notify+a+Friend+Form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (331, 1, 23, 'Notify+a+Friend+Form+Instructions', 'Instructions+on+how+to+fill+out+the+form+notifying+the+users+friend+of+the+ad+seleted', 'Fill+in+your+information+and+your+friends+information.++Enter+notes+you+will+want+to+tell+your+friend+about+the+ad+you+selected+and+click+the+send+button+at+the+bottom+of+the+form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (332, 1, 23, 'Your+Friends+Name+Field+Label', 'This+text+labels+the+field+where+the+current+will+enter+their+friends+name+to+notify+them+of+a+classified+ad', 'your+friend', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (333, 1, 23, 'Your+Friend%27s+Email+Address+Field+Label', 'This+is+the+label+for+the+current+users+friends+email+address+they+are+trying+to+notify+of+an+ad', 'your+friends+email+address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (334, 1, 23, 'Your+Name+Field+Label', 'This+text+labels+the+name+of+the+user+trying+to+notify+a+friend+of+an+ad', 'your+name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (335, 1, 23, 'Your+Email+Address+Field+Label', 'This+text+labels+the+field+the+user+will+place+their+email+address+to+notify+a+friend+of+an+ad', 'your+email+address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (336, 1, 23, 'Comment+Field+Label', 'Text+labeling+the+textbox+allowing+the+current+user+to+enter+a+message+for+their+friend+about+an+ad', 'Comments', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (337, 1, 23, 'check++your+email+addresserror+message', 'Message+displayed+when+the+current+users+email+address+is+not+in+a+valid+email+format', 'check+the+format+of+your+email+address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (338, 1, 23, 'Help+box+describing+the+notify+friend+process+and+form', 'This+text+will+appear+in+the+help+box+used+on+the+notify+a+friend+of+a+classified+ad+form', 'Fill+in+the+form+fields+properly+and+an+email+will+be+sent+to+the+email+address+you+specify.++The+email+will+contain+your+name+and+email+address+so+they+can+quickly+reply+to+you.++It+will+also+contain+some+information+on+the+classified+ad+you+were+just+vi', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (339, 1, 1, '+click+for+larger+image+link+text', 'If+the+seller+uploaded+an+image+larger+than+the+limits+set+in+the+admin+the+image+will+be+displayed+with+those+limits+and+a+link+to+a+popup+window+will+appear+below+the+image+saying+the+user+can+see+the+larger+image+by+clicking+here', 'click+for+larger+image', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (340, 6, 6, 'Display+Ad+Filters+Title', 'This+text+appears+as+the+title+of+the+page+displaying+the+ad+filters+the+current+user+has', 'My+Ad+Filters', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (341, 6, 6, 'Help+box+describing+the+Display+Ad+Filters+Page', 'This+text+appears+in+the+help+box+giving+a+further+explanation+to+the+ad+filters+page', 'The+ad+filters+allow+you+to+search+the+new+classifeds+ads+as+they+are+entered+into+the+site.++You+can+learn+first+if+a+classified+ad+has+been+added+with+just+what+you+are+looking+for.++Create+an+ad+filter.++Then+every+time+a+new+ad+is+entered+it+will+be+c', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (342, 6, 6, 'Display+Ad+Filters+Instructions', 'This+text+will+describe+and+explain+the+page+displaying+the+current+users+ad+filters', 'Below+are+the+current+ad+filters+you+have+active.++When+a+new+ad+is+entered+it+will+checked+against+the+filters+below.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (343, 1, 1, 'Notify+Friend+Link', 'This+text+appears+as+the+link+to+allow+any+person+browsing+the+classifieds+to+notify+their+friend+of+an+interesting+classified+ad.', 'notify+friend', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (344, 1, 23, 'Notification+Success+Message', 'This+text+appears+when+the+current+browser+has+successfully+sent+a+message+to+their+friend+about+the+selected+classified+ad', 'Your+message+has+been+sent+notifying+your+friend+of+the+classified+ad.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (345, 1, 24, 'Message+from+message+in+subject+line', 'This+text+comes+just+before+the+senders+name+in+the+subject+of+the+email+sent+to+the+friend', 'Message+from+', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (346, 1, 24, 'greeting+or+salutation+before+the+recipients+name', 'This+text+appears+just+before+the+recipients+name+in+the+top+of+the+email+sent+to+them+notifying+them+of+an+interesting+ad', 'Hello+', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (347, 1, 24, 'body+of+the+message+immediately+after+sender%5C%27s+name', 'This+is+the+body+of+the+message+saying+the+recipients+friend+wanted+them+to+check+out+the+ad+they+are+notifying+them+about.++Comes+just+before+the+link+to+the+actual+ad.', 'thought+you+would+be+interested+in+this+item+in+the+Geodesic+Classifieds%3A+', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (348, 1, 24, 'Comments+Field', 'This+label+appears+before+the+field+containing+the+sender%5C%27s+comments+about+the+ad', 'Senders+Comments%3A', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (349, 1, 24, 'Instructions+to+click+on+the+link+to+the+ad', 'This+text+gives+instructions+on+how+to+view+the+classified+ad+the+email+recipient+is+being+notified+about', 'Click+on+the+above+link+or+cut+and+paste+it+into+your+browser%5C%5Cn%5C%5Cn%5C%5CrThis+classifieds+program+was+created+by+Geodesic+Solutions%5C%5Cn%5C%5Crhttp%3A%2F%2Fwww.geodesicsolutions.com%2Fproducts%2Findex.htm+for+product+information', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (350, 1, 23, 'link+text+returning+to+classified+ad', 'This+text+appears+in+the+link+allowing+the+notifying+friend+to+return+to+the+classified+ad+just+viewed', 'back+to+classified+ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (351, 6, 18, 'Favorites+Page+Title', 'Title+text+of+the+page+containing+the+current+users+favorite+classified+ads.', 'My+Favorite+Ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (352, 6, 18, 'Favorite+List+Instructions', 'This+text+is+the+instructions+to+the+favorites+list', 'The+following+is+the+list+of+ads+you+have+chosen+to+keep+track+of.++To+remove+an+ad+from+your+list+click+the+delete+link+in+the+corresponding+row.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (353, 6, 18, 'Help+box+describing+the+use+of+the+favorites+list', 'This+is+a+description+how+to+add+ads+to+your+favorites+list+and+how+to+use+the+favorites+list.', 'If+you+need+to+remember+a+few+ads+so+you+can+return+to+them+later+add+them+to+your+favorites+list.++To+add+a+classified+ad+to+your+favorites+click+on+the+add+to+favorites+link+at+the+bottom+of+every+classified+ad.++The+link+only+appears+if+you+are+logged+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (354, 6, 8, 'Communication+List+Page+Title', 'This+is+the+title+text+of+the+page+listing+the+current+user+communications', 'My+Current+Messages', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (355, 6, 8, 'My+Current+Communications+Instructions', 'This+is+the+instruction+text+on+the+page+listing+the+current+users+communications', 'Below+are+the+current+communications+you+have+open.++To+view+and%2For+reply+to+a+message+click+the+view+link.++To+remove+a+communication+from+the+list+click+the+delete+link.++How+you+receive+communications+through+this+site+is+controlled+by+the+settings+y', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (356, 6, 8, 'Help+box+describing+the+communications+list+page', 'Text+appearing+in+the+help+box+describing+how+to+use+the+communications', 'The+communications+list+is+a+list+of+the+current+communications+sent+by+other+users+of+the+site+concerning+ads+you+have+placed+or+replys+you+have+chosen+to+take+through+private+communications.++%3Cbr%3E%3Cbr%3E%0D%0AThis+site+has+three+different+levels+of', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (357, 6, 8, 'Column+label+for+senders+name', 'This+text+labels+the+column+where+the+senders+name+appears.', 'message+from', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (358, 6, 8, 'Subject+Column+Label', 'This+is+column+label+for+the+subject+of+the+communications+sent', 'subject', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (359, 6, 8, 'Date+Received+Column+Label', 'This+text+labels+the+column+where+the+date+the+communication+was+sent+is+listed', 'date+received', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (360, 6, 8, 'Link+to+Communication+Configuration', 'Link+text+linking+the+the+communications+configuration+page', 'communications+configuration', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (361, 6, 26, 'Verify+Classified+Ad+Removal+Title', 'This+text+appears+as+the+title+for+the+page+allowing+the+current+user+to+verify+they+want+to+remove+an+ad+from+the+site', 'Verify+Classified+Ad+Removal', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (362, 6, 26, 'Verify+Classified+Ad+Removal+Instructions', 'This+is+the+text+of+the+page+verifying+the+current+users+request+to+remove+an+ad+from+the+site.', 'Please+verify+that+you+want+to+remove+your+classified+ad+from+our+site.++Also+please+enter+a+reason+you+would+like+the+classified+ad+removed.++When+through+click+the+%5C%22verify+classified+ad+removal%5C%22+button+at+the+bottom+of+the+form+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (363, 6, 26, 'Reason+For+Removal+Label', 'This+text+labels+the+field+containing+the+reason+why+the+current+user+wants+to+remove+this+ad+from+the+site.', 'short+reason+for+removal', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (364, 6, 26, 'Verify+Classified+Ad+Removal+Button+Text', 'This+text+appears+in+the+button+the+current+user+uses+to+verify+they+would+like+to+remove+a+classified+ad', 'Verify+Classified+Ad+Removal', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (365, 6, 26, 'Verify+Classified+Ad+Removal+Success+Title', 'This+text+is+the+title+of+the+page+that+notifys+the+current+that+the+ad+they+placed+was+removed.', 'Your+ad+has+been+successfully+removed', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (366, 6, 26, 'Back+to+List+of+Current+Ads+Page', 'This+text+appears+in+the+link+back+to+the+current+users+page+listing+their+current+ad+when+they+have+successfully+removed+an+ad+from+the+site', 'back+to+my+current+ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (367, 6, 27, 'Edit+Classified+Ad+Home+Page+Title', 'Title+text+of+the+page+displaying+the+classified+ad+the+current+user+would+like+to+edit', 'Edit+My+Classified+Ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (368, 6, 27, 'Edit+Classified+Ad+Home+Page+Instructions', 'This+is+the+instructions+for+editing+a+classified+ad', 'From+this+page+you+can+edit+one+of+your+classified+ads+currently+live+on+the+site.++Edit+the+details+by+clicking+the+edit+details+link.++Edit+the+images+by+clicking+the+edit+images+link.+Edit+the+category+the+ad+sits+in+by+clicking+the+edit+category+link.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (369, 6, 27, 'Edit+the+Classifieds+Ads+Detail+Link', 'Text+appearing+in+the+edit+my+classified+ad+home+page+linking+to+the+page+to+edit+the+details+of+the+classified+ad.', 'edit+classified+ad+details', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (370, 6, 27, 'Edit+the+Classifieds+Ads+Images+Link', 'Text+appearing+in+the+link+allowing+the+current+user+to+edit+the+images+of+a+classified+ad.', 'edit+classified+ad+images', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (371, 6, 27, 'Edit+the+Classifieds+Ads+Category+Link', 'Text+appearing+in+the+link+allowing+the+current+user+to+edit+the+category+of+a+classified+ad.', 'edit+classified+ad+category', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (372, 6, 28, 'Classified+Ad+Detail+Edit+Form+Title', 'Title+of+the+page+where+the+current+user+can+edit+a+classified+ad+detail+information', 'Classified+Ad+Detail+Edit+Form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (373, 6, 28, 'Edit+the+Classifieds+Ads+Details+Instructions', 'This+is+the+instructions+on+the+page+allowing+the+current+user+the+ability+to+edit+their+classified+ads+details', 'Make+the+necessary+changes+to+the+information+fields+below+then+click+the+save+changes+button', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (374, 6, 27, 'Back+to+Edit+Classified+Ad+Home', 'Link+text+linking+the+edit+classified+ad+elements+form+back+to+the+edit+classifieds+detail+form', 'back+to+edit+classified+ad+home', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (375, 6, 27, 'Button+Text+Saving+Changes', 'This+text+appears+in+the+button+that+saves+changes+on+the+details%2C+images+and+category+edit+forms', 'save+changes', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (376, 6, 30, 'Edit+the+Classifieds+Ads+Category+Form+Title', 'Title+text+for+the+form+that+allows+the+current+user+to+edit+the+category+of+their+classified+ad.', 'Edit+Classified+Ad+Category+Form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (377, 6, 30, 'Edit+the+Classifieds+Ads+Category+Form+Instructions', 'Instructions+for+the+form+allowing+the+user+to+edit+their+classified+ads+category', 'Choose+the+category+you+wish+to+move+this+classified+ad+to+and+click+the+save+changes+button+at+the+bottom+of+the+form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (378, 6, 30, 'Category+Field+Label', 'Label+for+the+category+field', 'category', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (379, 6, 29, 'Edit+the+Classifieds+Ads+Images+Form+Title', 'Title+text+for+the+form+that+allows+the+current+user+to+edit+the+images+of+their+classified+ad.', 'Edit+Classified+Ad+Images+Form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (380, 6, 29, 'Edit+the+Classifieds+Ads+Images+Form+Instructions', 'Instructions+for+the+form+allowing+the+user+to+edit+their+classified+ads+images', 'Delete+the+images+you+wish+to+remove+by+clicking+the+delete+button+next+to+the+image+you+wish+to+delete.++Add+an+image+by+filling+the+url+information+of+the+image+or+choosing+an+image+to+upload+then+click+the+add+image+button.++When+through+click+the+link', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (381, 6, 29, 'Delete+Image+Link+Text', 'Text+appearing+in+the+link+to+delete+an+image+from+a+classified+ad', 'delete+image', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (382, 6, 29, 'Column+Header+for+the+Image+Urls', 'This+text+appears+in+the+column+header+of+the+urls+that+reference+images+in+the+add+image+form', 'image+url+to+use', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (383, 6, 29, 'Column+Header+for+the+Image+Files+to+Upload', 'This+text+appears+in+the+column+header+of+the+files+to+upload+for+the+classified+ad', 'images+to+upload', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (384, 6, 29, 'Button+Text+to+Save+Images', 'Button+text+letting+the+current+user+add+images+to+their+classified+ad', 'Add+Images+to+Classified+Ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (385, 6, 29, 'Edit+Images+For+Message', 'This+text+precedes+the+title+of+the+classified+ad+the+user+is+currently+editing', 'Editing+images+for+%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (386, 9, 31, 'Lost+Password+Form+Title', 'Title+text+for+the+page+allowing+the+user+to+send+their+misplaced+password+to+their+email+address', 'Lost+Password+Form', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (387, 9, 31, 'Lost+Password+Form+Instructions', 'Instruction+text+for+filling+out+the+lost+password+form', 'Please+fill+in+the+blank+below+with+your+email+address.++Then+click+the+%5C%22send+my+password%5C%22+button+at+the+bottom+of+the+form.++The+password+that+is+attached+to+the+email+will+be+sent+to+the+email+account.+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (388, 9, 31, 'Email+Address+Label', 'Text+labeling+the+textbox+allowing+the+current+user+to+enter+an+email+address+and+having+their+matching+password+sent+to+it.', 'Email+Address%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (389, 8, 17, 'photo+icon+column+header', 'Column+header+for+the+photo+icon+column+on+the+search+results+page', 'photo', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (390, 8, 17, 'description+column+header', 'Column+header+for+the+description+field+of+the+search+results+page', 'description', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (391, 8, 17, 'Column+label+for+date+ad+placed', 'Column+header+for+the+date+begin+column+on+the+search+results+page+', 'date+ad+started', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (392, 8, 16, 'Help+box+describing+the+category+selection+field', 'Help+text+to+explain+the+use+of+the+category+selection+dropdown+box+in+the+search+page', 'Choose+a+category+you+would+like+to+search+using+your+search+terms+above.++To+search+that+categories+subcategories+also+leave+the+%5C%27subcategories+also%5C%27+checkbox.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (393, 8, 16, 'by+state+label', 'Text+appearing+in+the+state+label', 'by+state', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (394, 8, 16, 'help+box+describing+state+field', 'help+text+describing+the+use+of+the+state+field+in+the+search+page', 'Search+the+classifieds+using+the+state+field.++This+search+box+is+populated+with+the+states+currently+in+classified+ads.++Whichever+state+appears+in+the+dropdown+is+an+actual+state+that+a+classified+ad+is+located+in.++If+the+state+is+not+in+the+list+there', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (395, 8, 16, 'help+box+describing+country+field', 'help+text+describing+the+use+of+the+country+field+in+the+search+page', 'Search+the+classifieds+using+the+country+field.+This+search+box+is+populated+with+the+countries+dynamically+generated+from+states+with+classified+ads+listed+in+them.+Whichever+country+appears+in+the+dropdown+is+an+actual+country+that+a+classified+ad+is+lo', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (396, 8, 16, 'help+box+describing+zip+field', 'help+text+describing+the+use+of+the+zip+field+in+the+search+page', 'Search+the+classifieds+using+the+zip+field.+This+search+box+is+populated+with+the+zip+dynamically+generated+from+classified+ads+listed+in+them.+Whichever+zip+appears+in+the+dropdown+is+an+actual+zip+that+a+classified+ad+is+located+in.+If+the+zip+is+not+in', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (398, 1, 2, 'pages+of+results+label', 'This+text+labels+the+page+result+links+at+the+bottom+of+the+browse+page+allowing+the+user+to+move+to+the+next+page+of+results', 'more+results+%3E', 1, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (399, 1, 2, 'page+label+at+top+of+results', 'This+text+labels+what+the+current++page+is+in+the+total+results+at+the+top+of+the+listed+results', 'page', 1, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (400, 1, 2, 'of+label+in+the+total+pages+of+results', 'After+%5C%27page+%23+%5C%27+as+the+of+introducing+the+total+number+of+pages', 'of+', 1, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (401, 6, 27, 'Edit+another+user+ad+error+message', 'Error+message+appearing+when+a+user+tries+to+edit+another+users+ads+through+hacking', 'You+cannot+edit+anothers+ads%21%21%21%21%21%21%21%21%21%21', 1, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (402, 8, 16, 'First+value+in+category+specific+dropdown+boxes', 'The+first+value+in+all+category+specific+dropdown+boxes+letting+the+user+know+that+this+value+will+not+be+used+in+the+search.++Can+be+blank+to+signify+no+choice.', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (403, 2, 13, 'First+value+in+category+specific+dropdown+boxes', 'The+first+value+in+all+category+specific+dropdown+boxes+letting+the+user+know+that+this+value+will+not+be+used+in+the+classified+ad.+Can+be+blank+to+signify+no+choice.', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (404, 2, 13, 'Optional+questions', 'Title+text+for+the+section+containing+the+optional+questions+a+registrant+can+use+within+their+ads', 'Optional+Questions', 1, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (405, 2, 13, 'Optional+Questions+Instructions', 'Instructions+describing+the+use+of+the+optional+questions+placed+within+an+ad', 'These+questions+are+here+for+your+convenience.++They+help+you+enter+clear+concise+and+easy+to+peruse+information.++These+fields+%28if+used%29+will+be+placed+in+their+own+fields+so+that+this+information+will+be+quickly+found+by+people+browsing+your+ads.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (406, 2, 13, 'Or+Field+Between+Optional+Fields', 'This+text+appears+between+the+make+optional+dropdown+box+and+the+blank+input+box+describing+that+either+field+could+be+used', 'or', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (407, 2, 14, 'Current+Image+Label', 'Label+for+the+current+images+in+the+ad', 'Current+Images', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (408, 2, 14, 'Delete+Image+Link+Text', 'This+text+lets+the+user+delete+the+adjacent+image+from+the+place+an+ad+image+collection', 'click+to+delete', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (409, 2, 14, 'Back+to+Approval+Display+Form', 'Button+text+letting+the+user+go+back+to+the+approval+form+without+any+changes', 'Back+to+Approval+Form', 1, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (410, 1, 1, 'Send+Message+To+Seller+Link', 'This+text+links+to+the+messaging+system+allowing+the+browser+to+send+a+message+to+the+poster', 'send+a+message+to+the+seller', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (411, 6, 9, 'Message+Label', 'The+text+labels+the+message+that+a+sender+send+to+the+current+user', 'Message', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (412, 6, 9, 'Replied+Message+Label', 'The+text+labels+the+field+where+the+user+will+see+their+previous+reply', 'Your+Previous+Reply', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (413, 10, 0, 'Ended+Registration+Message', 'This+message+lets+the+user+know+that+their+registration+process+has+ended.', 'Your+registration+information+has+been+discarded%21', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (414, 10, 0, 'Link+To+Restart+Registration', 'This+link+text+will+allow+the+user+the+start+the+registration+process+over+once+they+have+stopped+their+registration+process.', 'Restart+Registration', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (415, 10, 0, 'Link+Text+To+End+Registration', 'This+text+appears+at+the+bottom+of+forms+1+and+2+allowing+the+user+to+end+their+registration', 'click+to+end+registration', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (416, 10, 34, 'Registration+Agreement', 'This+is+the+registration+agreement+text.++It+will+appear+in+a+separate+popup+box+if+the+user+clicks+on+the+link+to+view+it.', 'This+is+the+registration+agreement.+This+is+the+registration+agreement.+This+is+the+registration+agreement.+This+is+the+registration+agreement.+This+is+the+registration+agreement.+This+is+the+registration+agreement.+This+is+the+registration+agreement.+Thi', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (417, 10, 34, 'Registration+Agreement+Link+Text', 'This+text+will+make+the+registration+agreement+popup+box+appear+containing+the+registration+agreement.', 'view+registration+agreement', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (418, 6, 4, 'You+currently+have+no+expired+ads', 'This+message+appears+when+a+user+clicks+to+view+their+expired+ads+but+have+none.', 'You+have+no+expired+ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (419, 6, 19, 'password+field', 'The+field+label+for+the+password+field+in+the+edit+user+data+form', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (420, 6, 19, 'password+verify+field', 'The+field+label+for+the+password+verification+field+in+the+edit+user+data+form', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (421, 9, 31, 'Lost+password+submit+button', 'This+text+appears+in+the+button+allowing+the+user+to+submit+the+lost+password+form', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (422, 6, 19, 'error+message+for+company+name+field', 'The+error+message+displayed+when+an+error+occurred+in+the+company+name+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (423, 6, 19, 'error+message+for+firstname+field', 'The+error+message+displayed+when+an+error+occurred+in+the+firstname+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (424, 6, 19, 'error+message+for+lastname+field', 'The+error+message+displayed+when+an+error+occurred+in+the+lastname+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (425, 6, 19, 'error+message+for+address+field', 'The+error+message+displayed+when+an+error+occurred+in+the+address+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (426, 6, 19, 'duplicate+email+error+message', 'The+error+message+displayed+when+the+email+entered+is+already+in+use', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (427, 6, 19, 'email+format+error+message', 'The+error+message+displayed+when+the+email+is+improperly+formatted', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (428, 6, 19, 'email+missing+error+message', 'The+error+message+displayed+when+the+email+is+missing', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (429, 6, 19, 'error+message+for+city+field', 'The+error+message+displayed+when+an+error+occurred+in+the+city+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (430, 6, 19, 'error+message+for+state+field', 'The+error+message+displayed+when+an+error+occurred+in+the+state+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (431, 6, 19, 'error+message+for+country+field', 'The+error+message+displayed+when+an+error+occurred+in+the+country+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (432, 6, 19, 'error+message+for+zip+field', 'The+error+message+displayed+when+an+error+occurred+in+the+zip+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (433, 6, 19, 'error+message+for+phone+field', 'The+error+message+displayed+when+an+error+occurred+in+the+phone+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (434, 6, 19, 'error+message+for+phone+2+field', 'The+error+message+displayed+when+an+error+occurred+in+the+phone+2+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (435, 6, 19, 'error+message+for+fax+field', 'The+error+message+displayed+when+an+error+occurred+in+the+fax+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (436, 6, 19, 'error+message+for+url+field', 'The+error+message+displayed+when+an+error+occurred+in+the+url+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (437, 6, 19, 'error+message+for+password+field', 'The+error+message+displayed+when+an+error+occurred+in+the+password+field', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (438, 9, 0, 'error+message+locked+account', 'The+error+message+displayed+when+a+user+attempts+to+login+to+locked+account%29', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (439, 8, 0, 'error+message+if+nothing+entered+to+search', 'The+error+message+displayed+when+a+user+attempts+to+search+without+criteria.', '', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (440, 10, 44, 'Registration+Code+Form+Title', 'Title+text+of+the+registration+code+form', 'Registration+Code', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (441, 10, 44, 'Registration+Code+Form+Instructions', 'Instruction+text+appearing+at+the+top+of+the+Registration+Code+Form', 'Do+you+have+a+registration+code+to+enter.++To+take+advantage+of+a+special+promotion+you+encountered+for+this+site+enter+the+registration+code+used+within+the+special+promotion.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (442, 10, 44, 'Registration+Code+Error', 'This+message+is+displayed+when+the+registration+code+entered+did+not+match+any+registration+code+in+the+database.++It+says+to+try+again+or+click+bypass.', 'The+registration+code+you+have+entered+is+not+valid.++Please+check+the+promotion+code+in+the+promotion+material+you+encountered+and+try+typing+it+in+again+in+the+space+below+and+clicking+enter+registration+code.++If+you+just+wish+to+continue+with+registra', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (443, 10, 44, 'Registration+Code+Field+Label', 'Label+appearing+next+to+the+field+for+the+registration+code.', 'Registration+Code', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (444, 10, 44, 'Enter+Registration+Code+Button+Text', 'Text+appearing+in+the+button+to+enter+the+registration+code', 'Enter+Registration+Code', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (445, 10, 44, 'Bypass+Registration+Code+Button', 'Text+appearing+in+the+button+allowing+the+registrant+to+bypass+entering+the+registration+code', 'Continue+with+Registration', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (446, 2, 14, 'Charge+per+picture+text+label', 'Label+appearing+before+the+charge+per+picture', 'Charge+per+picture', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (447, 2, 45, 'Transaction+Detail+Title', 'Title+text+of+transaction+form', 'Transaction+Detail', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (448, 2, 45, 'Transaction+Detail+Form+Instructions', 'Instruction+text+appearing+at+the+top+of+the+Transaction+Detail+Form', 'Please+check+your+personal+information.++Choose+the+extra+features+for+your+ad.++Then+choose+how+you+wish+to+pay.++When+through+click+the+%5C%22enter+info%5C%22+button+at+the+bottom+and+proceed+to+transaction+approval.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (449, 2, 45, 'Personal+Information+Table+Title', 'Title+appearing+above+the+users+personal+information', 'Personal+Info', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (450, 2, 45, 'Name+Field+Label', 'Label+for+the+customers+name', 'name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (451, 2, 45, 'Address+Field+Label', 'Label+for+the+customers+address', 'address%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (452, 2, 45, 'Company+Field+Label', 'Label+for+the+customers+company+name', 'company+name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (453, 2, 0, 'Maximum+Ad+Limit+Exceeded+Message', 'Text+appearing+when+the+customer+trying+to+place+an+ad+has+exceeded+their+maximum+allowed+number+of+ads+on+the+site.', 'You+have+reached+the+maximum+number+of+ads+you+can+place+on+this+site.++To+enter+another+ad+you+must+expire+one+of+your+current+ads+or+wait+till+one+of+the+expires.++Contact+the+administrator+with+questions.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (454, 2, 45, 'Ad+Cost+and+Features+Section+Label', 'Label+text+of+the+section+where+users+the+cost+of+an+ad+as+well+as+the+extra+features+they+can+purchase', 'Ad+Cost+and+Features', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (455, 2, 45, 'Ad+Cost+and+Features+Instructions', 'Instruction+text+appearing+at+the+top+of+the+ad+cost+and+features+section', 'Below+is+the+cost+for+placing+this+ad+and+the+cost+for+the+purchase+of+extra+features.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (456, 2, 45, 'Ad+Cost+is+Covered+by+Credit+Message', 'Text+letting+the+customer+know+that+the+present+ad+is+covered+by+a+credit.', 'The+current+is+free+due+to+a+credit', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (457, 2, 45, 'Cost+of+Ad+Label', 'Text+labeling+the+cost+for+the+current+ad.', 'Cost+of+Ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (458, 2, 45, 'Cost+of+Ad+is+free+per+subscription', 'Message+displayed+when+ad+is+free+per+subscription', 'Ad+placement+per+subscription', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (459, 2, 45, 'Period+of+Subscription+Label', 'Text+appearing+before+the+time+period+in+a+subscription+charge', 'Period+of+subscription', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (460, 2, 45, 'Bolding+Field+Label', 'Label+for+the+bolding+option', 'Ad+Title+Bolding', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (461, 2, 45, 'Bolding+Field+Explanation', 'Desctiption+of+the+bolding+feature', 'The+bolding+option+for+your+ad+will+display+the+title+of+your+ad+in+bold+letters+while+users+are+browsing+the+classified+ads.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (462, 2, 45, 'Payment+Choices+Section+Title', 'Text+labeling+the+payment+choices', 'Payment+Choices', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (463, 2, 45, 'Cash+Payment+Type+Choice+Title', 'Label+for+the+cash+accepted+choice', 'cash', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (464, 2, 45, 'Cash+Payment+Type+Choice+Explanation', 'Explanation+of+how+the+cash+payment+choice+works', 'Once+you+approve+your+ad+in+the+next+step+it+will+be+placed+on+hold+until+you+can+pay+for+your+ad+in+cash.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (465, 2, 45, 'Money+Order+Payment+Type+Choice+Title', 'Title+of+money+order+payment+choice', 'money+order', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (466, 2, 45, 'Money+Order+Payment+Type+Choice+Explanation', 'Explanation+of+how+the+money+order+payment+choice+works', 'When+you+choose+money+order+as+your+method+of+payment+your+classified+ad+is+placed+on+hold+until+the+administrator+approves+your+ad+through+acceptance+of+payment.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (467, 2, 45, 'Check+Payment+Type+Choice+Title', 'Title+of+check+payment+choice', 'If+your+payment+choice+is+check+your+classified+ad+order+will+be+placed+on+hold+until+the+administrator+approves+of+the+classified+ad+through+acceptance+of+payment.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (468, 2, 45, 'Check+Payment+Type+Choice+Explanation', 'Explanation+of+how+the+check+payment+choice+works', 'If+you+payment+choice+is+check+your+classified+ad+will+be+placed+on+hold+until+the+administrator+approves+the+classified+ad+through+acceptance+of+payment.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (469, 2, 45, 'Credit+Card+Payment+Type+Choice+Title', 'Explanation+of+how+the+credit+card+payment+choice+works', 'If+your+payment+choice+is+credit+card+your+credit+card+information+is+taken+at+right+and+the+transaction+processed+immediately.++If+your+approved+your+classified+ad+will+be+live+immediately.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (470, 2, 45, 'Credit+Card+Payment+Type+Choice+Explanation', 'Explanation+of+how+the+credit+card+payment+choice+works', 'If+your+payment+choice+is+credit+card+your+credit+card+information+is+taken+at+right+and+the+transaction+processed+immediately.+If+your+approved+your+classified+ad+will+be+live+immediately.+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (471, 2, 45, 'Paypal+Payment+Type+Choice+Title', 'Title+of+paypal+payment+choice', 'paypal', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (472, 2, 45, 'PayPal+Payment+Type+Choice+Explanation', 'Explanation+of+how+the+PayPal+payment+choice+works', 'If+your+payment+choice+is+PayPal+your+transaction+will+be+placed+on+hold+until+we+receive+information+from+PayPal+that+payment+has+been+made.++This+procedure+will+happen+automatically.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (473, 2, 45, 'Credit+Card+Credit+Card+Number+Field+Label', 'Label+for+the+credit+card+number+field+to+enter+the+users+credit+card+number+for+payment', 'credit+card+number', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (474, 2, 45, 'Credit+Card+Expiration+Label', 'Label+for+the+credit+card+expiration+date', 'expiration+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (475, 2, 46, 'Final+Approval+Page+Title', 'Title+text+of+page+where+users+approve+their+transaction', 'Final+Approval+Page', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (476, 2, 46, 'Final+Approval+Page+Explanation', 'Explanation+of+how+the+final+approval+page+works', 'This+is+final+step+in+creating+your+ad+on+the+site.++Your+payment+choice+instructions+are+below.++This+will+explain+if+there+are+any+holds+placed+on+your+ad+depending+on+your+payment+type.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (477, 2, 46, 'Transaction+Detail+Title', 'Title+for+section+displaying+transaction+totals+on+final+approval+page', 'transaction+totals', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (478, 2, 46, 'Cost+of+Ad+Label+with+fee+based+price+plan', 'Label+for+the+cost+of+the+ad+for+this+transaction', 'cost+of+ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (479, 2, 46, 'Cost+of+Subscription+label+on+subscription+based+price+plan', 'Label+for+the+field+containing+the+cost+of+subscription.', 'cost+of+subscription', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (480, 2, 46, 'Bolding+Cost', 'Label+for+cost+of+bolding+if+chosen', 'bolding+cost', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (481, 2, 46, 'Better+Placement+Cost+Label', 'Label+for+the+cost+of+better+placement+if+any', 'cost+of+better+placement', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (482, 2, 46, 'Featured+Ad+Cost+Label', 'Label+for+cost+of+featured+ad+feature+if+any', 'cost+of+featured+ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (483, 2, 46, 'Subtotal+Field+Label', 'Label+for+the+subtotal+of+placing+ad', 'subtotal', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (484, 2, 46, 'Cash+Payment+Type+Choice+Transaction+Instruction', 'Explanation+of+the+transaction+process+for+the+cash+payment+option', 'Once+you+approve+the+transaction+below+by+clicking+the+approve+button+below+your+transaction+will+be+placed+on+hold+until+the+administrator+receives+your+payment.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (485, 2, 46, 'Credit+Card+Payment+Type+Choice+Transaction+Instruction', 'Explanation+of+how+the+credit+card+transaction+is+completed', 'When+you+approve+the+transaction+by+clicking+the+approve+button+your+credit+card+will+be+billed+for+the+fees+below.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (486, 2, 46, 'PayPal+Payment+Type+Choice+Transaction+Instruction', 'Explanation+of+how+the+PayPal+transaction+is+completed', 'Once+you+approve+your+classified+ad+by+clicking+the+approve+button+below+you+will+be+taken+to+the+PayPal+site+to+complete+your+transaction.++Once+you+have+completed+your+transaction+we+will+be+notified+by+PayPal+and+your+classified+ad+will+become+live.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (487, 2, 46, 'Money+Order+Payment+Type+Choice+Transaction+Instruction', 'Explanation+of+how+the+money+order+transaction+is+completed', 'Once+you+have+approved+your+transaction+by+clicking+the+approve+button+below+your+transaction+will+be+placed+on+hold+until+the+administrator+approves+the+transaction+through+acceptance+of+the+money+order.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (488, 2, 46, 'Check+Payment+Type+Choice+Transaction+Instruction', 'Explanation+of+how+the+check+transaction+is+completed', 'Once+you+have+approved+your+classified+ad+transaction+by+clicking+the+appprove+button+below+your+transaction+will+be+placed+on+hold+until+the+administrator+approves+the+transaction+through+acceptance+of+the+check', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (489, 2, 46, 'Final+Approval+Page+Submit+Button', 'Text+appearing+in+the+button+allowing+the+registrant+to+complete+their+transaction', 'Complete+Transaction', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (490, 2, 45, 'Ad+Better+Placement+Feature+Title', 'Title+field+of+the+better+placement+feature+offered', 'Ad+Better+Placement', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (491, 2, 45, 'Ad+Better+Placement+Feature+Explanation', 'Explanation+of+how+the+better+placement+feature+works+', 'The+better+placement+option+for+your+ad+will+display+your+ad+in+the+top+of+the+category+results+while+users+are+browsing+the+classified+ads.+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (492, 2, 45, 'Ad+Featured+Placement+Feature+Title', 'Title+of+the+featured+placement+feature', 'Featured+Ad+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (493, 2, 45, 'Ad+Featured+Placement+Feature+Explanation', 'Explanation+of+how+the+featured+placement+feature+works+', 'Featured+Ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (494, 2, 45, 'Submit+Button', 'Text+appearing+in+the+button+allowing+the+registrant+to+save+their+choice+of+payment+and+feature+list', 'Save+Choices', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (495, 2, 45, 'Email+Address+Label', 'Label+text+for+the+email+address+that+appears+in+the+personal+data+section', 'email+address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (496, 2, 45, 'Edit+Personal+Info+Link', 'Link+text+allowing+the+user+to+edit+their+personal+information', 'edit+your+personal+information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (497, 2, 45, 'Payment+Type+Not+Selected+Error', 'Error+message+appearing+when+a+user+does+not+choose+a+method+of+payment+for+their+classified+ad', 'Please+choose+a+method+of+payment', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (498, 2, 45, 'Credit+Card+Number+Retry+Error', 'Error+message+appearing+when+the+user+does+not+enter+a+proper+credit+card+number', 'Please+Re-enter+your+Credit+Card+Number', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (499, 2, 45, 'Credit+Card+Expired+Error+', 'Error+message+when+the+credit+card+the+user+entered+has+expired', 'credit+card+expired', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (500, 2, 46, 'Tax+Field+Label', 'Label+text+for+the+tax+field', 'tax', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (501, 2, 46, 'Total+Field+Label', 'Label+text+for+the+total+field', 'total', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (502, 2, 46, 'Edit+Transaction+Details+Link', 'Link+text+allowing+the+user+to+edit+the+transaction+details', 'edit+transaction+details', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (503, 2, 46, 'Cost+Description+Column+Header', 'Column+header+for+the+items+in+the+transaction', 'Ad+and+features', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (504, 2, 46, 'Column+Header+for+the+Cost+of+Ad+and+Features', 'Column+header+text+for+the+cost+of+the+ad+and+the+individual+features+figuring+into+the+total', 'cost', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (505, 2, 47, 'Cash+Payment+Success+Message', 'Instructions+on+how+the+transaction+should+be+concluded+if+cash+was+the+method+of+payment', 'Congratulations+on+successfully+entering+your+ads+information.++Your+ad+will+be+placed+on+hold+for+30+days+until+we+receive+your+cash+payment+at+our+offices.++After+30+days+your+ad+will+be+deleted+and+cannot+be+retrieved.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (506, 2, 47, 'Money+Order+Payment+Success+Message', 'Message+displaying+instructions+on+completing+the+transaction+when+paying+by+money+order+', 'Congratulations+on+successfully+entering+your+ads+information.+Your+ad+will+be+placed+on+hold+for+30+days+until+we+receive+your+money+order+payment+at+our+offices.+After+30+days+your+ad+will+be+deleted+and+cannot+be+retrieved.+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (507, 2, 47, 'Check+Payment+Success+Message', 'Message+displaying+instructions+on+completing+the+transaction+when+paying+by+check+', 'Congratulations+on+successfully+entering+your+ads+information.+Your+ad+will+be+placed+on+hold+for+30+days+until+we+receive+your+check+at+our+offices.+After+30+days+your+ad+will+be+deleted+and+cannot+be+retrieved.+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (508, 1, 48, 'Send+Message+To+Seller+Title', 'Title+text+of+the+page+to+send+a+message+to+the+seller', 'Send+a+Message+to+the+Seller', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (509, 1, 48, 'Send+Message+To+Seller+Instructions', 'Instructions+on+how+to+send+the+seller+a+message', 'Fill+in+the+form+below+with+your+return+email+address+and+your+question.++Click+the+button+at+the+bottom+of+the+form+when+through+and+we+will+forward+you+message+to+the+seller.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (510, 1, 48, 'Sellers+Field+Label', 'Label+for+the+sellers+username+field', 'Seller', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (511, 1, 48, 'Subject+of+Message+to+Seller', 'The+subject+of+the+message+that+will+be+sent+to+the+seller+will+be+the+title+of+the+ad', 'Subject', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (512, 1, 48, 'Your+Email+Address+Field+Label', 'Field+label+where+you+will+put+your+return+address+label', 'your+email+address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (513, 1, 48, 'Comment+Field+Label', 'Label+for+the+comment+field', 'your+comments', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (514, 1, 48, 'Email+Message+Introduction+to+Seller', 'This+text+appears+at+the+top+of+all+emails+resulting+from+a+send+a+message+to+a+seller+form', 'Below+is+an+inquiry+about+your+classified+ad', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (515, 1, 48, 'Send+Message+To+Seller+Success+', 'Message+displayed+when+user+successfully+sends+a+message+to+the+seller', 'Your+Message+has+been+forwarded+to+the+seller', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (516, 2, 47, 'Credit+Card+Success+Message', 'Message+displayed+when+a+credit+card+transaction+is+approved.', 'Your+credit+card+has+been+approved.++Your+ad+should+be+live.++Click+below+to+see+it.+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (517, 2, 47, 'Credit+Card+Declined+Message', 'This+message+appears+if+the+credit+card+was+declined.', 'The+credit+card+you+supplied+was+not+approved.++Please+try+your+transaction+again+with+a+different+credit+card+or+form+of+payment', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (518, 2, 47, 'Credit+Card+Error+Message', 'This+message+appears+if+the+credit+card+transaction+returned+an+error..', 'There+was+an+error+in+your+credit+card+transaction.++Please+contact+the+administrator+and+try+the+transaction+later.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (519, 1, 2, 'Price+Column+Header', 'column+header+for+the+price+when+displayed+while+browsing', 'price', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (520, 2, 13, 'Price+Field+Label', 'Field+label+', 'price', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (521, 2, 15, 'Price+Field+Label', 'Label+appearing+next+to+the+price+field+when+it+is+chosen+for+use+', 'price', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (522, 10, 34, 'Edit+Personal+Info+Link', 'This+allows+the+user+to+edit+their+personal+information+if+they+want.', 'Edit+Your+Personal+Info', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (523, 2, 47, 'Credit+Card+Declined+Retry+Link', 'This+message+appears+when+a+credit+card+has+been+declined+or+an+error+happened+in+the+processing', 'Click+here+to+try+your+transaction+again', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (524, 1, 43, 'Featured+Ad+Header', 'This+is+the+header+for+the+featured+ad+section+of+the+home+page', 'Featured+Ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (525, 1, 43, 'Newest+Ad+Title', 'Title+text+for+the+newest+ad+section+on+the+home+page', 'Newest+Ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (526, 1, 2, 'Featured+Ad+Header', 'Header+text+for+the+featured+ad+section', 'Featured+Ads+in', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (527, 1, 1, 'Price+Field+Label', 'Label+text+for+the+price+field', 'Price', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (528, 1, 48, 'Send+Message+To+Seller+Submit+Button', 'Button+text+of+the+button+to+send+the+seller+a+message', 'send+your+message', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (529, 1, 23, 'Notify+a+Friend+Form+Submit+Button', 'Button+text+letting+the+current+user+send+their+friend+a+message', 'send+your+message', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (530, 10, 0, 'Required+Fields+Message', 'This+message+appears+at+the+bottom+of+the+registration+to+denote+that+which+fields+are+required', '%2A+required+fields', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (531, 2, 45, 'Charge+per+picture+text+label', 'Text+labeling+the+cost+per+picture+per+ad', 'charge+for+pictures+used%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (532, 2, 45, 'Charge+per+picture+text+explanation', 'Text+explaining+the+charge+per+picture', 'There+is+a+charge+for+each+picture+you+place+in+your+classified%0D%0A%09%09%09%09%09ad.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (533, 4, 0, 'advanced+search+link', 'link+text+to+the+search+page+when+inside+of+category', 'advanced+search', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (536, 2, 14, 'max+upload+size+label', 'text+labeling+the+maximum+allowed+upload+size', 'maximum+image+upload+size', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (535, 2, 14, 'no+image+was+received+message', 'message+displayed+when+an+upload+attempt+was+made+but+no+file+was+received', 'We+received+no+image.++Please+try+again.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (534, 2, 14, 'image+too+large+message', 'text+displayed+when+an+image+uploaded+is+larger+than+the+limit+set+in+the+admin', 'An+image+you+have+uploaded+is+too+large.++Please+try+another.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (538, 2, 13, 'submit+detail+information+button', 'button+text+that+submits+classified+ad+detail+information', 'enter+classified+ad+information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (537, 2, 13, 'price+field+error', 'text+displayed+when+the+price+field+is+left+empty', 'Please+fill+in+the+price+field', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (539, 10, 34, 'Email+Verifier+Does+Not+Match+Error+Message', '', 'Your+email+verification+does+not+match.++Try+again.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (540, 10, 34, 'Email+Verifier+Field', '', 'email+verifier', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (541, 2, 13, 'Choose+Terminal+Category+Message', '', 'The+category+you+chose+is+not+a+lowest+category.++Please+choose+a+category+with+an+%2A.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (542, 2, 13, 'Choose+Category', 'Label+for+category+dropdown+when+the+non-explorer+interface+is+used', 'choose+category', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (543, 2, 13, 'Place+Only+in+Lowest+Categories+', 'Message+appearing+when+the+non+explorer+category+choice+process+is+in+use+and+the+use+must+place+their+ad+in+one+of+the+lowest+categories', 'Please+choose+a+category+with+an+%2A+next+to+it.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (544, 6, 10, 'Communications+Configuration+Submission+Button', '', 'save+communication+selection', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (545, 8, 17, 'Price+Column+Header', '', 'price', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (546, 2, 13, 'days+next+to+duration', '', 'days', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (547, 6, 8, 'No+Communications+Currently+Message', '', 'You+currently+have+no+messages+awaiting+you', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (548, 6, 7, 'Save+Filter+Button', '', 'save+filter', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (549, 6, 7, 'All+Categories+Choice+in+Category+Dropdown', '', 'All+Categories', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (550, 8, 16, 'All+Categories+Choice+in+Category+Dropdown', '', 'All+Categories', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (551, 6, 28, 'Main+Category+Name+in+Ad+Detail', '', 'Main', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (552, 8, 16, 'Optional+Search+Criteria+Search+Fields+Appearing+Before+Category+Name', '', 'Optional+search+criteria+for+the+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (553, 2, 49, 'Successful+Ad+Placement+Email+Subject', '', 'Your+Ad+Was+Successfully+Placed', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (554, 2, 49, 'Salutation+Before+Name', '', 'Congratulations+', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (555, 2, 49, 'Successful+Ad+Placement+Email+Body', '', 'Your+classified+ad+was+successfully+placed+on+our+site.++Below+is+a+link+directly+to+it.', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (556, 1, 50, 'Ad+Expiring+Email+Subject', '', 'Your+ad+is+about+to+expire', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (557, 1, 50, 'Email+Salutation', '', 'Hello+', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (558, 1, 50, 'Email+Body', '', 'Your+ad+is+about+to+expire.++Below+is+the+direct+link+to+the+ad+about+to+expire.', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (559, 2, 51, 'Renewal+Form+Title', '', 'Renew+Your+Ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (560, 2, 51, 'Renewal+Form+Instructions', '', 'You+can+renew+your+classified+through+this+form.++Click+yes+to+renew+your+ad+and+then+click+the+submit+button+at+the+bottom+of+this+page.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (561, 2, 51, 'Renew+Ad+Cost+Label', '', 'Cost+to+Renew+Your+Ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (562, 2, 51, 'Explanation+of+Renewal+Charge', '', 'Your+ad+will+be+renewed+for+the+length+of+time+you+used+for+your+original+ad.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (563, 2, 51, 'Yes+to+Renew', '', 'yes', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (564, 2, 51, 'No+to+Renewal', '', 'Do+Not+Renew', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (565, 2, 51, 'Your+Ad+is+Renewable+But+Not+at+this+Time+Message', '', 'You+have+the+ability+to+renew+your+ad+but+you+cannot+at+this+time.++Check+back+closer+to+the+end+of+the+ad.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (566, 2, 51, 'Your+Ad+Cannot+Be+Renewed+Message', '', 'You+will+not+be+able+to+renew+your+ad.++', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (567, 2, 51, 'Please+Choose+a+Method+of+Payment+Instruction', '', 'Please+choose+a+method+of+payment+from+the+options+below.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (568, 2, 51, 'Choose+a+Method+of+Payment+Error+Message', '', 'Please+choose+a+method+of+payment+to+move+to+the+next+step', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (569, 2, 51, 'Credit+Card+Label', '', 'Credit+Card', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (570, 2, 51, 'Credit+Card+Explanation', '', 'If+paying+by+credit+card+use+this+method+of+payment.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (571, 2, 51, 'Credit+Card+Number', '', 'credit+card+number', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (572, 2, 51, 'Credit+Card+Expiration+Label', '', 'Expiration', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (573, 2, 51, 'Paypal+Choice+Label', '', 'Paypal', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (574, 2, 51, 'PayPal+Payment+Type+Choice+Transaction+Instruction', '', 'If+you+wish+to+use+Paypal+to+pay+for+the+renewal+of+your+ad+select+paypal.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (575, 2, 51, 'Submit+Button', '', 'Renew+My+Ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (576, 2, 51, 'Link+Back+to+the+My+Current+Ads', '', 'Back+to+My+Current+Ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (577, 2, 51, 'Credit+Card+Number+Error+Message', '', 'Please+enter+a+valid+credit+card+number', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (578, 2, 51, 'Credit+Card+Expiration+Error+', '', 'Please+enter+a+valid+expiration+date', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (579, 2, 51, 'You+Must+Choose+to+Renew+to+Continue+Message', '', 'You+must+click+yes+to+renew+your+ad+to+continue.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (580, 2, 13, 'Currency+Type+Dropdown+Box+Label', '', 'Currency+Option', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (581, 6, 21, 'Price+Field+Label', '', 'price', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (582, 6, 21, 'Title', '', 'title', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (584, 6, 28, 'Currency+Type+Dropdown+Box+Label', '', 'currency+type', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (585, 2, 45, 'Worldpay+Choice+Title', '', 'Worldpay', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (586, 2, 45, 'Worldpay+Explanation', '', 'If+you+wish+to+pay+using+Worldpay+click+the+bubble+to+the+right', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (587, 6, 29, 'No+Image+Data+Was+Received+Message', '', 'We+received+no+image+data.++Please+try+again.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (588, 6, 29, 'Image+Too+Large+Error+Message', '', 'The+image+you+tried+to+upload+was+too+large.++Please+try+another.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (589, 1, 2, 'Newest+Ad+Title', '', 'Newest+Ads+In', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (590, 6, 3, 'Renew+Ad+Link+Label', '', 'renew', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (591, 2, 46, 'Worldpay+Payment+Type+Choice+Transaction+Instruction', '', 'Explanation+and+instruction+on+how+to+complete+your+transaction+through+Worldpay', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (592, 2, 52, 'Renewal+Approval+Page', '', 'Renewal+Approval', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (593, 2, 52, 'Renewal+Approval+Page+Instructions', '', 'If+you+approve+of+the+renewal+charges+below+click+the+submit+button+below.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (594, 2, 52, 'Charge+Column+Header', '', 'Charges', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (595, 2, 52, 'Costs+Column+Header', '', 'cost', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (596, 2, 52, 'Ad+Renewal+Cost+Label', '', 'ad+renewal', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (597, 2, 52, 'Approval+Button', '', 'Approve+Ad+Renewal', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (598, 2, 53, 'Ad+Renewal+Success+Message', '', 'Your+ad+has+been+successfully+renewed.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (599, 2, 53, 'Ad+Renewal+Failure+Message', '', 'Your+ad+was+not+successfully+renewed', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (600, 2, 53, 'Ad+Renewal+Page+Title', '', 'Ad+Renewal+Success%2FFailure', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (601, 2, 53, 'Ad+Renewal+Page+Instructions', '', 'Below+is+the+failure%2Fsuccess+message+of+your+ad+renewal+request.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (602, 1, 54, 'Personal+Information+Header+', '', 'This+sellers+contact+information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (603, 1, 54, 'Sellers+Name', '', 'name%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (604, 1, 54, 'Sellers+Address', '', 'address%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (605, 1, 54, 'Sellers+City+State+and+Zip', '', 'city%2C+state+and+zip%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (606, 1, 54, 'Sellers+Country', '', 'country%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (607, 1, 54, 'Sellers+Phone', '', 'phone%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (608, 1, 54, 'Sellers+Secondary+Phone', '', 'secondary+phone%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (609, 1, 54, 'Sellers+Fax', '', 'fax%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (610, 1, 54, 'Sellers+Url', '', 'url%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (611, 6, 19, 'Expose+In+Other+Ad+Checkbox+Label', '', 'expose+in+other+ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (612, 1, 1, 'Sellers+Other+Ads+Link', '', 'Show+sellers+other+ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (613, 1, 54, 'Email+Address', '', 'email%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (614, 1, 54, 'Sellers+Other+Ads+Page+Label', '', 'All+Ads+for+', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (196, 10, 38, 'registration confirmation email subject', '', 'registration+confirmation+email+subject', 2, 1, 1);
INSERT INTO `geodesic_text_messages` VALUES (615, 10, 39, 'Subject+Line+of+Email+Notifying+of+Registration+Success', '', 'You+are+registered...', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (616, 6, 26, 'User+Choice+Removal+Message', 'Default+message+placed+at+the+front+of+the+reason+for+ad+removal', 'User+Choice', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (617, 1, 54, 'Sellers Company Name', '', 'company name', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (622, 8, 17, 'distance column', 'column value used when zip code distance calculator is installed', 'distance+in+miles', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (623, 2, 46, 'Paypal+Currency+Type+After+Totals', 'If+you+accept+a+different+paypal+currency+than+the+currency+your+site+is+in+enter+that+currency+designation+and+this+will+be+displayed+after+all+paypal+transaction+totals', 'USD', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (624, 2, 46, 'Paypal+Currency+Type+Pre+Totals', 'Symbol+before+Paypal+transactions+when+exchange+rate+needed', '%24', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (625, 2, 13, 'Email+Communication+Address', 'Label+for+the+email+override+field+allowing+the+user+to+set+an+email+address+this+user+can+have+messages+go+to', 'Communication+Email+Address%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (626, 2, 13, 'Email+Communication+Address+Error+Message', '', 'Please+reenter+the+email+where+you+wish+to+receive+communications+about+this+ad.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (627, 6, 28, 'Email+Communication+Address', '', 'Email+Communication+Address', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (628, 6, 28, 'Email+Communication+Address+Error+Message', '', 'Please+enter+a+valid+email+address+for+users+to+communicate+with+for+this+ad', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (629, 6, 7, 'yes+to+subcategories+also', '', 'yes', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (630, 6, 7, 'no+to+subcategories+also', '', 'no', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (631, 4, 0, 'advanced+search+link+%28top+right%29', 'text+for+the+advanced+search+link+at+the+top+right+of+each+page', 'advanced+search', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (632, 4, 0, 'my+account+link+%28top+right%29', 'my+account+link+text+at+the+top+right+of+every+page', 'my+account', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (633, 4, 0, 'top+right+links+seperator', 'seperator+between+the+two+links+at+the+top+right+of+every+page', '%7C', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (634, 4, 0, 'greeting', 'welcome+text+before+the+user+name+or+guest+', 'Welcome%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (635, 4, 0, 'guest+text', 'text+to+display+next+to+welcome+user+message+if+not+logged+in', 'Guest', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (636, 4, 0, 'home+link+%28top+right%29', 'home+link+at+top+right+of+page', 'home', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (637, 4, 0, 'quick+search+label', 'text+next+to+quick+search+box', 'Quick+Search%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (638, 4, 0, 'quick+search+button+text', 'text+on+quick+search+button', 'go', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (639, 9, 31, 'confirmation+message', 'message+shown+when+email+entered+correctly+and+email+sent', 'Your+login+information+has+been+sent%21', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (640, 1, 43, 'Hottest+Ad+Header', 'This+is+the+header+for+the+hottest+ad+section+of+the+home+page', 'Hottest+Ads', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (641, 6, 19, 'number+of+credits+label', 'label+for+the+credits+available+to+a+user+when+viewing+their+information', 'Number+of+credits%3A', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (642, 2, 55, 'Pedigree+Section+Instructions', '', 'Enter+the+pedigree+specific+information+below.', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (643, 2, 55, 'Pedigree+Section+Title', 'Title+for+pedigree+section', 'Pedigree+Information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (644, 2, 55, 'Sire+Title', 'Title+for+sire+fields', 'Sire+Information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (645, 2, 55, 'Dam+Title', 'Title+for+dam+fields', 'Dam+Information', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (646, 2, 55, 'Sire+Label', 'Label+for+Sire+field', 'Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (647, 2, 55, 'Sire+Sire+Label', 'Label+for+Sire+Sire+field', 'Sire+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (648, 2, 55, 'Sire+Dam+Label', 'Label+for+Sire+Dam+field', 'Sire+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (649, 2, 55, 'Sire+Sire+Sire+Label', 'Label+for+Sire+Sire+Sire+field', 'Sire+Sire+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (650, 2, 55, 'Sire+Sire+Dam+Label', 'Label+for+Sire+Sire+Dam+field', 'Sire+Sire+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (651, 2, 55, 'Sire+Dam+Sire+Label', 'Label+for+Sire+Dam+Sire+field', 'Sire+Dam+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (652, 2, 55, 'Sire+Dam+Dam+Label', 'Label+for+Sire+Dam+Dam+field', 'Sire+Dam+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (653, 2, 55, 'Dam+Label', 'Label+for+Dam+field', 'Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (654, 2, 55, 'Dam+Sire+Label', 'Label+for+Dam+Sire+field', 'Dam+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (655, 2, 55, 'Dam+Dam+Label', 'Label+for+Dam+Dam+field', 'Dam+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (656, 2, 55, 'Dam+Sire+Sire+Label', 'Label+for+Dam+Sire+Sire+field', 'Dam+Sire+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (657, 2, 55, 'Dam+Sire+Dam+Label', 'Label+for+Dam+Sire+Dam+field', 'Dam+Sire+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (658, 2, 55, 'Dam+Dam+Sire+Label', 'Label+for+Dam+Dam+Sire+field', 'Dam+Dam+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (659, 2, 55, 'Dam+Dam+Dam+Label', 'Label+for+Dam+Dam+Dam+field', 'Dam+Dam+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (660, 1, 56, 'Sire+Label', 'Label+for+Sire+table', 'Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (661, 1, 56, 'Dam+Label', 'Label+for+Dam+table', 'Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (662, 6, 57, 'Sire+Label', 'Label+for+Sire+field', 'Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (663, 6, 57, 'Sire+Sire+Label', 'Label+for+Sire+Sire+field', 'Sire+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (664, 6, 57, 'Sire+Dam+Label', 'Label+for+Sire+Dam+field', 'Sire+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (665, 6, 57, 'Sire+Sire+Sire+Label', 'Label+for+Sire+Sire+Sire+field', 'Sire+Sire+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (666, 6, 57, 'Sire+Sire+Dam+Label', 'Label+for+Sire+Sire+Dam+field', 'Sire+Sire+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (667, 6, 57, 'Sire+Dam+Sire+Label', 'Label+for+Sire+Dam+Sire+field', 'Sire+Dam+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (668, 6, 57, 'Sire+Dam+Dam+Label', 'Label+for+Sire+Dam+Dam+field', 'Sire+Dam+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (669, 6, 57, 'Dam+Label', 'Label+for+Dam+field', 'Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (670, 6, 57, 'Dam+Sire+Label', 'Label+for+Dam+Sire+field', 'Dam+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (671, 6, 57, 'Dam+Dam+Label', 'Label+for+Dam+Dam+field', 'Dam+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (672, 6, 57, 'Dam+Sire+Sire+Label', 'Label+for+Dam+Sire+Sire+field', 'Dam+Sire+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (673, 6, 57, 'Dam+Sire+Dam+Label', 'Label+for+Dam+Sire+Dam+field', 'Dam+Sire+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (674, 6, 57, 'Dam+Dam+Sire+Label', 'Label+for+Dam+Dam+Sire+field', 'Dam+Dam+Sire', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (675, 6, 57, 'Dam+Dam+Dam+Label', 'Label+for+Dam+Dam+Dam+field', 'Dam+Dam+Dam', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (676, 2, 51, 'Renewal+Cost+Label', '', 'Renewal+Cost', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (677, 2, 51, 'Featured+Ad+Cost+Label', '', 'Featured+Ad+Cost', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (678, 2, 51, 'Image+Cost+Label', '', 'Image+Cost', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (679, 2, 51, 'Bolding+Cost+Label', '', 'Bolding+Cost', 2, 1, 0);
INSERT INTO `geodesic_text_messages` VALUES (680, 2, 51, 'Better+Placement+Cost+Label', '', 'Better+Placement+Cost', 2, 1, 0);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_text_pages`
# 

DROP TABLE IF EXISTS `geodesic_text_pages`;
CREATE TABLE `geodesic_text_pages` (
  `text_page_id` int(11) NOT NULL auto_increment,
  `page_name` varchar(50) NOT NULL default '',
  `language_id` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`text_page_id`),
  KEY `text_page_id_2` (`text_page_id`)
) TYPE=MyISAM AUTO_INCREMENT=12 ;

# 
# Dumping data for table `geodesic_text_pages`
# 

INSERT INTO `geodesic_text_pages` VALUES (1, 'Browse Categories / Ads', 1);
INSERT INTO `geodesic_text_pages` VALUES (2, 'Place Ad Process', 1);
INSERT INTO `geodesic_text_pages` VALUES (3, 'Footer', 1);
INSERT INTO `geodesic_text_pages` VALUES (4, 'Site Menu Bar / Misc Site Wide Text', 1);
INSERT INTO `geodesic_text_pages` VALUES (5, 'User Menu Bar', 1);
INSERT INTO `geodesic_text_pages` VALUES (6, 'User Management (My Account)', 1);
INSERT INTO `geodesic_text_pages` VALUES (8, 'Search Page', 1);
INSERT INTO `geodesic_text_pages` VALUES (9, 'Login Page / Password Forms', 1);
INSERT INTO `geodesic_text_pages` VALUES (10, 'Registration Section', 1);
INSERT INTO `geodesic_text_pages` VALUES (11, 'Language Selection Form', 1);

# --------------------------------------------------------

# 
# Table structure for table `geodesic_text_subpages`
# 

DROP TABLE IF EXISTS `geodesic_text_subpages`;
CREATE TABLE `geodesic_text_subpages` (
  `sub_page_id` int(11) NOT NULL auto_increment,
  `parent_page_id` int(11) NOT NULL default '0',
  `name` tinytext NOT NULL,
  `explanation` tinytext NOT NULL,
  PRIMARY KEY  (`sub_page_id`)
) TYPE=MyISAM AUTO_INCREMENT=55 ;

# 
# Dumping data for table `geodesic_text_subpages`
# 

INSERT INTO `geodesic_text_subpages` VALUES (1, 1, 'Ad Display Page', 'This page displays the classified ad.');
INSERT INTO `geodesic_text_subpages` VALUES (2, 1, 'Browse Category Pages', 'Fields+displayed+when+browsing+the+classified+ad+categories');
INSERT INTO `geodesic_text_subpages` VALUES (3, 6, 'Active (Current) Ads Page', 'This text appears on the user''s Active Ads Page.');
INSERT INTO `geodesic_text_subpages` VALUES (4, 6, 'Expired Ads Page', 'This text appears on the user''s Expired Ads Page.');
INSERT INTO `geodesic_text_subpages` VALUES (6, 6, 'Ad Filters Page', 'This text appears on the user''s Ad Filters Page. ');
INSERT INTO `geodesic_text_subpages` VALUES (7, 6, 'New Ad Filter Page', 'This text appears on the user''s Add New Ad Filter Page.');
INSERT INTO `geodesic_text_subpages` VALUES (8, 6, 'Communications (Messages) Page', 'This text appears on the user''s My Messages Page.');
INSERT INTO `geodesic_text_subpages` VALUES (9, 6, 'Communications (Messages) Reply Form', 'This page allows the user to reply to their messages.');
INSERT INTO `geodesic_text_subpages` VALUES (10, 6, 'Communications (Messages) Setup Page', 'This text appears on the user''s Messages Setup Page. ');
INSERT INTO `geodesic_text_subpages` VALUES (12, 2, 'Ad Category Section', 'First step in the Place Ad Process.');
INSERT INTO `geodesic_text_subpages` VALUES (13, 2, 'Ad Details Form', 'Second step in the Place Ad Process. User enters their ad''s details.');
INSERT INTO `geodesic_text_subpages` VALUES (14, 2, 'Ad Images Form', 'Third step in the Place Ad Process. User enters their ad''s images/files.');
INSERT INTO `geodesic_text_subpages` VALUES (15, 2, 'Approval Page', 'This step allows the user to preview the information they have just entered for their ad.');
INSERT INTO `geodesic_text_subpages` VALUES (16, 8, 'Advanced Search Page', 'This page displays a form for a user to enter their search criteria.');
INSERT INTO `geodesic_text_subpages` VALUES (17, 8, 'Search Results Page', 'This page displays a table with the results of a user''s search.');
INSERT INTO `geodesic_text_subpages` VALUES (18, 6, 'Favorites Page', 'This text appears on the user''s Favorites Page.');
INSERT INTO `geodesic_text_subpages` VALUES (19, 6, 'Edit Account Info Form', 'This page allows the user to edit their account information.');
INSERT INTO `geodesic_text_subpages` VALUES (20, 6, 'View Account Info Page', 'This text appears on the user''s View Account Info Page and provides a link to the user''s Edit Account Info Page. ');
INSERT INTO `geodesic_text_subpages` VALUES (21, 6, 'Expired Ad Details Page', 'This page displays the details of a user''s expired ad. Ads remain in the expired ads table for 30 days after expiration, after which time they cannot be retrieved or renewed by the user.');
INSERT INTO `geodesic_text_subpages` VALUES (22, 6, 'Ad Filter Email', 'This is text appears in the email that is sent to a user when an Ad Filter Match has been detected.');
INSERT INTO `geodesic_text_subpages` VALUES (23, 1, 'Notify a Friend Form', 'This form allows a user to notify a friend by email of an ad.');
INSERT INTO `geodesic_text_subpages` VALUES (24, 1, 'Notify a Friend Email', 'This text appears in the email that is sent.');
INSERT INTO `geodesic_text_subpages` VALUES (26, 6, 'Verify+Ad+Removal+Page', 'This+page+allows+the+current+user+to+verify+the+removal+of+their+ad+from+the+site.');
INSERT INTO `geodesic_text_subpages` VALUES (27, 6, 'Edit Ad Home Page', 'This page displays the details of the ad and provides links for the user to edit those details.');
INSERT INTO `geodesic_text_subpages` VALUES (28, 6, 'Edit Ad Details Form', 'This page allows the user to edit their ad''s details.');
INSERT INTO `geodesic_text_subpages` VALUES (29, 6, 'Edit Ad Images Form', 'This page allows the user to edit their ad''s images.');
INSERT INTO `geodesic_text_subpages` VALUES (30, 6, 'Edit Ad Category Form', 'This page allows the user to edit their ad''s category. ');
INSERT INTO `geodesic_text_subpages` VALUES (31, 9, 'Lost Password Form', 'This form allows the user to retrieve their login information based upon their email address.');
INSERT INTO `geodesic_text_subpages` VALUES (32, 9, 'Lost Password Email', 'This is the email that is sent to the user when they initiate the Lost Password routine.');
INSERT INTO `geodesic_text_subpages` VALUES (33, 9, 'Change+Password+Form', 'This+form+allows+the+user+to+change+their+password.');
INSERT INTO `geodesic_text_subpages` VALUES (34, 10, 'Registration+Page+1', 'This+page+collects+the+personal+information+of+the+registrant');
INSERT INTO `geodesic_text_subpages` VALUES (36, 10, 'Registration+Confirmation+Page', 'This+page+tells+the+user+to+check+their+email+to+verify+their+registration');
INSERT INTO `geodesic_text_subpages` VALUES (37, 10, 'Registration+Success+Page', 'This+page+appears+once+the+user+has+verified+their+registration+from+their+email+account.');
INSERT INTO `geodesic_text_subpages` VALUES (38, 10, 'Registration Confirmation Email', 'This is the email that is sent to the registrant which contains confirmation and any additional instructions.');
INSERT INTO `geodesic_text_subpages` VALUES (39, 10, 'Registration+Success+Email', 'Email+sent+once+the+user+has+confirmed+their+registration');
INSERT INTO `geodesic_text_subpages` VALUES (41, 6, 'User Management (My Account) Home Page', 'This is the main page for the My Account section. It contains links to the user''s account pages.');
INSERT INTO `geodesic_text_subpages` VALUES (42, 2, 'Success Page', 'This page confirms that the ad was successfully placed.');
INSERT INTO `geodesic_text_subpages` VALUES (43, 1, 'Browse+Categories+Home', 'Home+browsing+page.');
INSERT INTO `geodesic_text_subpages` VALUES (44, 10, 'Registration+Code+Form', 'Form+allowing+the+registrant+the+ability+to+enter+a+registration+code+during+registration');
INSERT INTO `geodesic_text_subpages` VALUES (45, 2, 'Transaction Details Page', 'This page displays the transaction (cost) details of the ad and allows the user to select a payment choice.');
INSERT INTO `geodesic_text_subpages` VALUES (46, 2, 'Final+Approval+Page', 'Users+approve+their+transaction+before+processing.');
INSERT INTO `geodesic_text_subpages` VALUES (47, 2, 'Success Messages', 'These messages will display as additional information on the Success Page instructing the user of any additional requirements.');
INSERT INTO `geodesic_text_subpages` VALUES (48, 1, 'Contact Seller', 'This form allows a site visitor to send a message to the seller.');
INSERT INTO `geodesic_text_subpages` VALUES (49, 2, 'Success Email', 'This is the email that is sent to the user confirming their ad placement.');
INSERT INTO `geodesic_text_subpages` VALUES (50, 1, 'Ad+Expiration+Email', 'Email+sent+when+ad+is+about+to+expire.');
INSERT INTO `geodesic_text_subpages` VALUES (51, 2, 'Renewal+Form', 'This+form+allows+the+user+to+renew+one+of+their+ads.');
INSERT INTO `geodesic_text_subpages` VALUES (52, 2, 'Renewal+Approval+Form', 'Form+showing+the+total+cost+for+renewal');
INSERT INTO `geodesic_text_subpages` VALUES (53, 2, 'Renewal+Success+Page', 'This+page+displays+the+success%2Ffailure+messages+of+the+ad+renewal+process.');
INSERT INTO `geodesic_text_subpages` VALUES (54, 1, 'Seller Other Ads Page', 'This page displays the seller other ads and personal information they wish to expose.');

# --------------------------------------------------------

# 
# Table structure for table `geodesic_version`
# 

DROP TABLE IF EXISTS `geodesic_version`;
CREATE TABLE `geodesic_version` (
  `db_version` tinytext NOT NULL
) TYPE=MyISAM;

# 
# Dumping data for table `geodesic_version`
# 

INSERT INTO `geodesic_version` VALUES ('2.0.4');

# --------------------------------------------------------

# 
# Table structure for table `geodesic_worldpay_settings`
# 

DROP TABLE IF EXISTS `geodesic_worldpay_settings`;
CREATE TABLE `geodesic_worldpay_settings` (
  `worldpay_installation_id` int(11) NOT NULL default '0',
  `currency_type` varchar(4) NOT NULL default '',
  `test_mode` int(11) NOT NULL default '0',
  `callback_password` tinytext NOT NULL
) TYPE=MyISAM;

# 
# Dumping data for table `geodesic_worldpay_settings`
# 

INSERT INTO `geodesic_worldpay_settings` VALUES (0, 'JPY', 1, '');

# --------------------------------------------------------

# 
# Table structure for table `geodesic_worldpay_transactions`
# 

DROP TABLE IF EXISTS `geodesic_worldpay_transactions`;
CREATE TABLE `geodesic_worldpay_transactions` (
  `transaction_id` int(11) NOT NULL auto_increment,
  `session_id` tinytext NOT NULL,
  `classified_id` int(11) NOT NULL default '0',
  `user_id` int(11) NOT NULL default '0',
  `first_name` tinytext NOT NULL,
  `last_name` tinytext NOT NULL,
  `address` tinytext NOT NULL,
  `city` tinytext NOT NULL,
  `state` tinytext NOT NULL,
  `country` tinytext NOT NULL,
  `zip` varchar(15) NOT NULL default '',
  `email` tinytext NOT NULL,
  `tax` double(5,2) NOT NULL default '0.00',
  `amount` double(5,2) NOT NULL default '0.00',
  `fax` varchar(20) NOT NULL default '',
  `phone` varchar(20) NOT NULL default '',
  `company` tinytext NOT NULL,
  `transaction_description` tinytext NOT NULL,
  `transStatus` varchar(4) NOT NULL default '',
  `transTime` varchar(20) NOT NULL default '',
  `authAmount` double(5,2) NOT NULL default '0.00',
  `authCurrency` varchar(10) NOT NULL default '',
  `authAmountString` tinytext NOT NULL,
  `rawAuthMessage` tinytext NOT NULL,
  `rawAuthCode` tinytext NOT NULL,
  `callbackPW` tinytext NOT NULL,
  `cardType` varchar(20) NOT NULL default '',
  `countryString` varchar(20) NOT NULL default '',
  `countryMatch` varchar(5) NOT NULL default '',
  `AVS` varchar(5) NOT NULL default '',
  `ad_placement` int(11) NOT NULL default '0',
  `renew` int(11) NOT NULL default '0',
  `bolding` int(11) NOT NULL default '0',
  `better_placement` int(11) NOT NULL default '0',
  `featured_ad` int(11) NOT NULL default '0',
  `attention_getter` int(11) NOT NULL default '0',
  `attention_getter_choice` int(11) NOT NULL default '0',
  UNIQUE KEY `transaction_id` (`transaction_id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

# 
# Dumping data for table `geodesic_worldpay_transactions`
# 

INSERT INTO `geodesic_worldpay_transactions` VALUES (1, '084b8b1f5946e813c3136a81746d23cb', 136, 2, '', '', ' ', '', '', '', '', '', 0.00, 76.00, '', '', '', 'classified ad', '', '', 0.00, '', '', '', '', '', '', '', '', '', 0, 1, 0, 0, 0, 0, 0);

