Form Maker by WD – user-friendly drag & drop Form Builder plugin - Version 1.8.34

Version Description

Fixed: Some minor style issues

Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Form Maker by WD – user-friendly drag & drop Form Builder plugin
Version 1.8.34
Comparing to
See all releases

Code changes from version 1.8.33 to 1.8.34

admin/controllers/FMControllerManage_fm.php CHANGED
@@ -159,15 +159,15 @@ public function redo()
159
  }
160
 
161
  public function save_db_options_old() {
162
- $javascript = "// Before the form is loaded.
163
  function before_load() {
164
 
165
  }
166
- // Before form submit.
167
  function before_submit() {
168
  // IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don't need to return any value if you don't want to stop the submission.
169
  }
170
- // Before form reset.
171
  function before_reset() {
172
 
173
  }";
@@ -350,15 +350,15 @@ function before_reset() {
350
  }
351
 
352
  public function save_db_options() {
353
- $javascript = "// Before the form is loaded.
354
  function before_load() {
355
 
356
  }
357
- // Before form submit.
358
  function before_submit() {
359
  // IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don't need to return any value if you don't want to stop the submission.
360
  }
361
- // Before form reset.
362
  function before_reset() {
363
 
364
  }";
@@ -719,10 +719,10 @@ function before_reset() {
719
 
720
  public function save_db() {
721
  global $wpdb;
722
- $javascript = "// before form is load
723
  function before_load() {
724
  }
725
- // before form submit
726
  function before_submit() {
727
  // IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don't need to return any value if you don't want to stop the submission.
728
  }
159
  }
160
 
161
  public function save_db_options_old() {
162
+ $javascript = "// Occurs before the form is loaded
163
  function before_load() {
164
 
165
  }
166
+ // Occurs just before submitting the form
167
  function before_submit() {
168
  // IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don't need to return any value if you don't want to stop the submission.
169
  }
170
+ // Occurs just before resetting the form
171
  function before_reset() {
172
 
173
  }";
350
  }
351
 
352
  public function save_db_options() {
353
+ $javascript = "// Occurs before the form is loaded
354
  function before_load() {
355
 
356
  }
357
+ // Occurs just before submitting the form
358
  function before_submit() {
359
  // IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don't need to return any value if you don't want to stop the submission.
360
  }
361
+ // Occurs just before resetting the form
362
  function before_reset() {
363
 
364
  }";
719
 
720
  public function save_db() {
721
  global $wpdb;
722
+ $javascript = "// Occurs before the form is loaded
723
  function before_load() {
724
  }
725
+ // Occurs just before submitting the form
726
  function before_submit() {
727
  // IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don't need to return any value if you don't want to stop the submission.
728
  }
admin/controllers/FMControllerSubmissions_fm.php CHANGED
@@ -688,7 +688,11 @@ class FMControllerSubmissions_fm {
688
  }
689
  else {
690
  echo WDW_FM_Library::message('Error. Please install plugin again.', 'error');
691
- }
 
 
 
 
692
  $this->display($form_id);
693
  }
694
 
@@ -702,21 +706,15 @@ class FMControllerSubmissions_fm {
702
  $query = 'DELETE FROM ' . $wpdb->prefix . 'formmaker_submits WHERE group_id IN ( ' . $cids . ' )';
703
  // $elements_col = $wpdb->get_col('SELECT element_value FROM ' . $wpdb->prefix . 'formmaker_submits WHERE group_id IN ( ' . $cids . ' )');
704
  if ($wpdb->query($query)) {
705
- // foreach ($elements_col as $element_value) {
706
- // $destination = str_replace(site_url() . '/', '', $element_value);
707
- // $destination = str_replace('*@@url@@*', '', $destination);
708
- // if ($destination) {
709
- // $destination = ABSPATH . $destination;
710
- // if (file_exists($destination)) {
711
- // unlink($destination);
712
- // }
713
- // }
714
- // }
715
  echo WDW_FM_Library::message('Items Succesfully Deleted.', 'updated');
716
  }
717
  else {
718
  echo WDW_FM_Library::message('Error. Please install plugin again.', 'error');
719
  }
 
 
 
720
  }
721
  else {
722
  echo WDW_FM_Library::message('You must select at least one item.', 'error');
688
  }
689
  else {
690
  echo WDW_FM_Library::message('Error. Please install plugin again.', 'error');
691
+ }
692
+
693
+ $query = $wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_sessions WHERE form_id="%d" AND group_id="%d"', $form_id, $id);
694
+ $wpdb->query($query);
695
+
696
  $this->display($form_id);
697
  }
698
 
706
  $query = 'DELETE FROM ' . $wpdb->prefix . 'formmaker_submits WHERE group_id IN ( ' . $cids . ' )';
707
  // $elements_col = $wpdb->get_col('SELECT element_value FROM ' . $wpdb->prefix . 'formmaker_submits WHERE group_id IN ( ' . $cids . ' )');
708
  if ($wpdb->query($query)) {
709
+
 
 
 
 
 
 
 
 
 
710
  echo WDW_FM_Library::message('Items Succesfully Deleted.', 'updated');
711
  }
712
  else {
713
  echo WDW_FM_Library::message('Error. Please install plugin again.', 'error');
714
  }
715
+
716
+ $query = $wpdb->prepare('DELETE FROM ' . $wpdb->prefix . 'formmaker_sessions WHERE form_id="%d" AND group_id IN ( "%s" )', $form_id, $cids );
717
+ $wpdb->query($query);
718
  }
719
  else {
720
  echo WDW_FM_Library::message('You must select at least one item.', 'error');
form-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
- * Version: 1.8.33
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -271,7 +271,7 @@ function register_fmemailverification_cpt(){
271
  // Activate plugin.
272
  function form_maker_activate() {
273
  $version = get_option("wd_form_maker_version");
274
- $new_version = '1.8.33';
275
  global $wpdb;
276
  if (!$version) {
277
  add_option("wd_form_maker_version", $new_version, '', 'no');
3
  * Plugin Name: Form Maker
4
  * Plugin URI: https://web-dorado.com/products/form-maker-wordpress.html
5
  * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
6
+ * Version: 1.8.34
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
271
  // Activate plugin.
272
  function form_maker_activate() {
273
  $version = get_option("wd_form_maker_version");
274
+ $new_version = '1.8.34';
275
  global $wpdb;
276
  if (!$version) {
277
  add_option("wd_form_maker_version", $new_version, '', 'no');
form_maker_insert.php CHANGED
@@ -259,16 +259,16 @@ function install_demo_forms() {
259
 
260
  $form_maker_row = $wpdb->get_var("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE `id` NOT IN (" . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ")");
261
  if (!$form_maker_row) {
262
- $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Contact\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="1" class="wdform_row ui-sortable-handle">%1 - Name:%</div><div wdid="2" class="wdform_row ui-sortable-handle">%2 - E-mail:%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - Subject:%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - Message:%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - type_submit_reset_5%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 1, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\r\n\r\nVerify your email address %Verification link%\', 6, 1, \'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Subject:#**label**#type_text#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#\', \'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Subject:#**label**#type_text#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Subject:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_submit_reset*:*type*:*type_submit_reset_5*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'*2*\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 1, 1, 0, 1)');
263
- $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Fill Form To Get Admission\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="1" class="wdform_row ui-sortable-handle">%1 - Name:%</div><div wdid="2" class="wdform_row ui-sortable-handle">%2 - E-mail:%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - Phone Number:%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - SELECT COLLEGE%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - OTHER SPECIFY HERE%</div><div wdid="7" class="wdform_row ui-sortable-handle">%7 - Word Verification:%</div><div wdid="8" class="wdform_row ui-sortable-handle">%8 - type_submit_reset_8%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 8, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 9, 1, \'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone Number:#**label**#type_number#****#5#**id**#SELECT COLLEGE#**label**#type_own_select#****#6#**id**#OTHER SPECIFY HERE#**label**#type_text#****#7#**id**#Word Verification:#**label**#type_captcha#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#\', \'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone Number:#**label**#type_number#****#5#**id**#SELECT COLLEGE#**label**#type_own_select#****#6#**id**#OTHER SPECIFY HERE#**label**#type_text#****#7#**id**#Word Verification:#**label**#type_captcha#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***yes*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_number*:*type*:*Phone Number:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_own_select*:*type*:*SELECT COLLEGE*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**** GGSCMT,KHARAR*** DOABA KHARAR *** CAMBRIDGE COLLEGE FATEHGARH *** INDOGLOBAL *** QUEST COLLEGE *** UNIVERSAL ,LALRU *** OTHER PLEASE SPECIFY BELOW *:*w_choices*:*true***false***false***false***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false***false***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:**** GGSCMT,KHARAR*** DOABA KHARAR *** CAMBRIDGE COLLEGE FATEHGARH *** INDOGLOBAL *** QUEST COLLEGE *** UNIVERSAL ,LALRU *** OTHER PLEASE SPECIFY BELOW *:*w_choices_value*:***********************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*6*:*id*:*type_text*:*type*:*OTHER SPECIFY HERE*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*7*:*id*:*type_captcha*:*type*:*Word Verification:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*6*:*w_digit*:**:*w_class*:**:*new_field*:*8*:*id*:*type_submit_reset*:*type*:*type_submit_reset_8*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
264
- $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Camp Registration Form\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="1" class="wdform_row ui-sortable-handle">%1 - Camper Name:%</div><div wdid="2" class="wdform_row ui-sortable-handle">%2 - Camper Age Group:%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - Desire Cabin:%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - Does any one have allergies?%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - Has the camper been camping before?%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - Any questions or concern:%</div><div wdid="7" class="wdform_row ui-sortable-handle">%7 - type_submit_reset_7%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 15, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 8, 1,\'1#**id**#Camper Name:#**label**#type_name#****#2#**id**#Camper Age Group:#**label**#type_own_select#****#3#**id**#Desire Cabin:#**label**#type_radio#****#4#**id**#Does any one have allergies?#**label**#type_radio#****#5#**id**#Has the camper been camping before?#**label**#type_radio#****#6#**id**#Any questions or concern:#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', \'1#**id**#Camper Name:#**label**#type_name#****#2#**id**#Camper Age Group:#**label**#type_own_select#****#3#**id**#Desire Cabin:#**label**#type_radio#****#4#**id**#Does any one have allergies?#**label**#type_radio#****#5#**id**#Has the camper been camping before?#**label**#type_radio#****#6#**id**#Any questions or concern:#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\',0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0,\'\', \'\', \'USD\', 0, \'1*:*id*:*type_name*:*type*:*Camper Name:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_own_select*:*type*:*Camper Age Group:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:****6-8***8-12***12-15*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****6-8***8-12***12-15*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*Desire Cabin:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Cabin 1***Cabin 2***Cabin 3***Cabin 4***Cabin 5***Cabin 6***Cabin 7*:*w_choices*:*false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Cabin 1***Cabin 2***Cabin 3***Cabin 4***Cabin 5***Cabin 6***Cabin 7*:*w_choices_value*:********************:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*Does any one have allergies?*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*Has the camper been camping before?*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*Any questions or concern:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
265
 
266
- $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Business Demographic Survey\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"></div></div><div wdid="1" type="type_section_break" class="wdform_tr_section_break">%1 - custom_1%</div><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="2" class="wdform_row ui-sortable-handle">%2 - <b>What is your employment status?</b>%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - <b>What is your level of education?</b>%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - <b>In which industry do you work?</b>%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - <b>What is the annual revenue of your company?</b>%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - Word Verification:%</div><div wdid="7" class="wdform_row ui-sortable-handle">%7 - type_submit_reset_7%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 10, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 1, \'<p>%all%</p>\', \'<p>%all%</p>\', 8, 1, \'2#**id**#What is your employment status?#**label**#type_radio#****#3#**id**#What is your level of education?#**label**#type_radio#****#4#**id**#In which industry do you work?#**label**#type_own_select#****#5#**id**#What is the annual revenue of your company?#**label**#type_radio#****#6#**id**#Word Verification:#**label**#type_captcha#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', \'2#**id**#What is your employment status?#**label**#type_radio#****#3#**id**#What is your level of education?#**label**#type_radio#****#4#**id**#In which industry do you work?#**label**#type_own_select#****#5#**id**#What is the annual revenue of your company?#**label**#type_radio#****#6#**id**#Word Verification:#**label**#type_captcha#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h2 id="header_1" style="font-size: 1.285714286rem; font-family: Helvetica, Arial, sans-serif; color: rgb(68, 68, 68); clear: both; line-height: 1.6; margin: 1.714285714rem 0px;">Business Demographic Survey</h2><p style="line-height: 1.714285714; margin: 0px 0px 1.714285714rem; color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px;"></p><div id="subHeader_1" style="color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 14px;">Thank you for joining our business demographic survey. Please give us your feedback by filling in the information bellow.</div><p><br></p>*:*w_editor*:**:*new_field*:*2*:*id*:*type_radio*:*type*:*<b>What is your employment status?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Employed full time***Trade or Vocational degree***Not employed, but looking for work***Not employed and not looking for work***Retired***Student***Homemaker***Prefer not to answer*:*w_choices*:*false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Employed full time***Trade or Vocational degree***Not employed, but looking for work***Not employed and not looking for work***Retired***Student***Homemaker***Prefer not to answer*:*w_choices_value*:***********************:*w_choices_params*:**:*w_class*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*<b>What is your level of education?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Some high school***High school graduate or equivalent***Trade or Vocational Degree***Some college***Associate degree***Bachelor&#39;s degree***Graduate or Professional degree***Prefer not to answer*:*w_choices*:*false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Some high school***High school graduate or equivalent***Trade or Vocational Degree***Some college***Associate degree***Bachelor&#39;s degree***Graduate or Professional degree***Prefer not to answer*:*w_choices_value*:***********************:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_own_select*:*type*:*<b>In which industry do you work?</b>*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:****option 1***option 2***option 3*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****option 1***option 2***option 3*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*<b>What is the annual revenue of your company?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Under $10,000***$10,001 to $50,000***$50,001 to $100,000***$100,001 to $500,000***$500,001 to $1 Million***$1 Million to $10 Million***$10 Million to $50 Million***$50 Million to $100 Million***Over $100 Million*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Under $10,000***$10,001 to $50,000***$50,001 to $100,000***$100,001 to $500,000***$500,001 to $1 Million***$1 Million to $10 Million***$10 Million to $50 Million***$50 Million to $100 Million***Over $100 Million*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_captcha*:*type*:*Word Verification:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*6*:*w_digit*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
267
- $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Register Your Business\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="1" class="wdform_row ui-sortable-handle">%1 - Business Owner %</div><div wdid="2" class="wdform_row ui-sortable-handle">%2 - Business Name%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - E-mail%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - Address:%</div><div wdid="10" class="wdform_row ui-sortable-handle">%10 - Type of Business%</div><div wdid="11" class="wdform_row ui-sortable-handle">%11 - Message%</div><div wdid="12" class="wdform_row ui-sortable-handle">%12 - type_submit_reset_12%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 26, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 13, 1, \'1#**id**#Business Owner #**label**#type_name#****#2#**id**#Business Name#**label**#type_text#****#3#**id**#E-mail#**label**#type_submitter_mail#****#4#**id**#Street Address#**label**#type_address#****#5#**id**#Street Address Line 2#**label**#type_address#****#6#**id**#City#**label**#type_address#****#7#**id**#State / Province / Region#**label**#type_address#****#8#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Country#**label**#type_address#****#10#**id**#Type of Business#**label**#type_own_select#****#11#**id**#Message#**label**#type_textarea#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#\', \'1#**id**#Business Owner #**label**#type_name#****#2#**id**#Business Name#**label**#type_text#****#3#**id**#E-mail#**label**#type_submitter_mail#****#4#**id**#Street Address#**label**#type_address#****#5#**id**#Street Address Line 2#**label**#type_address#****#6#**id**#City#**label**#type_address#****#7#**id**#State / Province / Region#**label**#type_address#****#8#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Country#**label**#type_address#****#10#**id**#Type of Business#**label**#type_own_select#****#11#**id**#Message#**label**#type_textarea#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_name*:*type*:*Business Owner *:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_text*:*type*:*Business Name*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no****:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*10*:*id*:*type_own_select*:*type*:*Type of Business*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:*Select value***option 1***option 2*:*w_choices*:*true***false***false*:*w_choices_checked*:*true***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:****option 1***option 2*:*w_choices_value*:********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*11*:*id*:*type_textarea*:*type*:*Message*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*12*:*id*:*type_submit_reset*:*type*:*type_submit_reset_12*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
268
- $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Cupcake Order Form\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="1" class="wdform_row ui-sortable-handle">%1 - Date%</div><div wdid="2" class="wdform_row ui-sortable-handle">%2 - Name%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - E-mail:%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - <b>Cupcakes <br> Flavors (1 doz. minimum)</b>%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - Quantity%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - Details (if any)%</div><div wdid="7" class="wdform_row ui-sortable-handle">%7 - type_submit_reset_7%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 6, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 8, 1, \'1#**id**#Date#**label**#type_date#****#2#**id**#Name#**label**#type_name#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_checkbox#****#5#**id**#Quantity#**label**#type_own_select#****#6#**id**#Details (if any)#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', \'1#**id**#Date#**label**#type_date#****#2#**id**#Name#**label**#type_name#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_checkbox#****#5#**id**#Quantity#**label**#type_own_select#****#6#**id**#Details (if any)#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_date*:*type*:*Date*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:**:*w_date*:*yes*:*w_required*:**:*w_class*:*%Y-%m-%d*:*w_format*:*...*:*w_but_val*:*no*:*w_disable_past_days*:**:*new_field*:*2*:*id*:*type_name*:*type*:*Name*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_checkbox*:*type*:*<b>Cupcakes <br> Flavors (1 doz. minimum)</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Red Velvet ($150.00 TTD)***Vanilla ($100.00 TTD)***Chocolate ($120.00 TTD)***Guinness ($150.00 TTD)***Coconut ($120.00 TTD)***Lemon ($100.00 TTD)***Chocolate Mint ($120.00 TTD)*:*w_choices*:*false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Red Velvet ($150.00 TTD)***Vanilla ($100.00 TTD)***Chocolate ($120.00 TTD)***Guinness ($150.00 TTD)***Coconut ($120.00 TTD)***Lemon ($100.00 TTD)***Chocolate Mint ($120.00 TTD)*:*w_choices_value*:********************:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_own_select*:*type*:*Quantity*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*50*:*w_size*:****1***2***3***4***5***6***7***8***9***10*:*w_choices*:*true***false***false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false***false***false***false***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****1***2***3***4***5***6***7***8***9***10*:*w_choices_value*:********************************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*Details (if any)*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
269
- $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Seminar Evaluation Survey\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"></div></div><div wdid="1" type="type_section_break" class="wdform_tr_section_break">%1 - custom_1%</div><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="2" class="wdform_row ui-sortable-handle">%2 - <b>Company</b>%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - <b>Occupation</b>%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - <b>Was it worth its money?</b>%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - <b>On average how would you rate the seminar?</b>%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - type_submit_reset_6%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 16, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 7, 1, \'2#**id**#Company#**label**#type_text#****#3#**id**#Occupation#**label**#type_text#****#4#**id**#Was it worth its money?#**label**#type_radio#****#5#**id**#On average how would you rate the seminar?#**label**#type_radio#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#\', \'2#**id**#Company#**label**#type_text#****#3#**id**#Occupation#**label**#type_text#****#4#**id**#Was it worth its money?#**label**#type_radio#****#5#**id**#On average how would you rate the seminar?#**label**#type_radio#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h1 id="header_1" style="font-size: 1.5rem; font-family: Helvetica, Arial, sans-serif; color: rgb(68, 68, 68); clear: both; line-height: 1.5; margin: 1.714285714rem 0px;">Seminar Evaluation Survey</h1><div id="subHeader_1" style="color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 14px;">Please take a few minutes to complete this evaluation survey</div>*:*w_editor*:**:*new_field*:*2*:*id*:*type_text*:*type*:*<b>Company</b>*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*3*:*id*:*type_text*:*type*:*<b>Occupation</b>*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*<b>Was it worth its money?</b>*:*w_field_label*:*200*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*<b>On average how would you rate the seminar?</b>*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Very good***Good***Neutral***Bad***Very bad*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Very good***Good***Neutral***Bad***Very bad*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_submit_reset*:*type*:*type_submit_reset_6*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
270
- $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Restaurant Evaluation Survey\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"></div></div><div wdid="1" type="type_section_break" class="wdform_tr_section_break">%1 - custom_1%</div><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="2" class="wdform_row ui-sortable-handle">%2 - Day Visited:%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - <b>Dine In / Take Out:</b>%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - <b>Food Quality:</b>%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - <b>Speed of Service:</b>%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - <b>Any comments, questions or suggestions?</b>%</div><div wdid="7" class="wdform_row ui-sortable-handle">%7 - type_submit_reset_7%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 21, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 8, 1, \'2#**id**#Day Visited:#**label**#type_date#****#3#**id**#Dine In / Take Out:#**label**#type_radio#****#4#**id**#Food Quality:#**label**#type_radio#****#5#**id**#Speed of Service:#**label**#type_radio#****#6#**id**#Any comments, questions or suggestions?#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', \'2#**id**#Day Visited:#**label**#type_date#****#3#**id**#Dine In / Take Out:#**label**#type_radio#****#4#**id**#Food Quality:#**label**#type_radio#****#5#**id**#Speed of Service:#**label**#type_radio#****#6#**id**#Any comments, questions or suggestions?#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h2 id="header_21" style="font-size: 1.285714286rem; font-family: Helvetica, Arial, sans-serif; color: rgb(68, 68, 68); clear: both; line-height: 1.6; margin: 1.714285714rem 0px;">Restaurant Evaluation Survey</h2><div id="subHeader_21" style="color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 14px;">Please let us know how was the food and service.</div><p><br></p>*:*w_editor*:**:*new_field*:*2*:*id*:*type_date*:*type*:*Day Visited:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:**:*w_date*:*no*:*w_required*:**:*w_class*:*%Y-%m-%d*:*w_format*:*...*:*w_but_val*:*no*:*w_disable_past_days*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*<b>Dine In / Take Out:</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Dine In***Dine Out*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Dine In***Dine Out*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*<b>Food Quality:</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Excellent***Good***Average***Dissatisfied*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Excellent***Good***Average***Dissatisfied*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*<b>Speed of Service:</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Excellent***Good***Average***Dissatisfied*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Excellent***Good***Average***Dissatisfied*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*<b>Any comments, questions or suggestions?</b>*:*w_field_label*:*300*:*w_field_label_size*:*top*:*w_field_label_pos*:*300*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
271
- $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Product Survey\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"></div></div><div wdid="1" type="type_section_break" class="wdform_tr_section_break">%1 - custom_1%</div><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="2" class="wdform_row ui-sortable-handle">%2 - 1. Please indicate if you agree or disagree with the following statements%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - 2. How likely are you to recommend [Product/Service] to a friend or co-worker?%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - 3. What is the amount you would ever pay for a product like ours%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - 4. Please rate the product %</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - type_submit_reset_6%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 29, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 7, 1, \'2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#\', \'2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h1 class="sg-title" data-mce-style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;" style="font-size: 2.2em; font-weight: normal; color: rgb(255, 255, 255); line-height: normal;">Product Survey</h1>*:*w_editor*:**:*new_field*:*2*:*id*:*type_matrix*:*type*:*1. Please indicate if you agree or disagree with the following statements*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*radio*:*w_field_input_type*:****Product is affordable***Product is valuable***Product is better<br> than other products on<br> the market***Product is easy to use*:*w_rows*:****Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree*:*w_columns*:*no*:*w_required*:*wdform_matrix*:*w_class*:**:*w_textbox_size*:**:*new_field*:*3*:*id*:*type_scale_rating*:*type*:*2. How likely are you to recommend [Product/Service] to a friend or co-worker?*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*Will not recommend *** I will recommend*:*w_mini_labels*:*5*:*w_scale_amount*:*no*:*w_required*:*wdform_scale_rating*:*w_class*:**:*new_field*:*4*:*id*:*type_range*:*type*:*3. What is the amount you would ever pay for a product like ours*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*40*:*w_field_range_width*:*1*:*w_field_range_step*:*null*:*w_field_value1*:*null*:*w_field_value2*:*From***To*:*w_mini_labels*:*no*:*w_required*:**:*w_class*:**:*new_field*:*5*:*id*:*type_star_rating*:*type*:*4. Please rate the product *:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*yellow*:*w_field_label_col*:*10*:*w_star_amount*:*no*:*w_required*:*wdform_star_rating*:*w_class*:**:*new_field*:*6*:*id*:*type_submit_reset*:*type*:*type_submit_reset_6*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
272
  }
273
  }
274
  }
259
 
260
  $form_maker_row = $wpdb->get_var("SELECT * FROM " . $wpdb->prefix . "formmaker WHERE `id` NOT IN (" . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ")");
261
  if (!$form_maker_row) {
262
+ $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Contact\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="1" class="wdform_row ui-sortable-handle">%1 - Name:%</div><div wdid="2" class="wdform_row ui-sortable-handle">%2 - E-mail:%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - Subject:%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - Message:%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - type_submit_reset_5%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 1, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\r\n\r\nVerify your email address %Verification link%\', 6, 1, \'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Subject:#**label**#type_text#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#\', \'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Subject:#**label**#type_text#****#4#**id**#Message:#**label**#type_textarea#****#5#**id**#type_submit_reset_5#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Subject:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Message:*:*w_field_label*:*70*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_submit_reset*:*type*:*type_submit_reset_5*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'*2*\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 1, 1, 0, 1)');
263
+ $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Fill Form To Get Admission\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="1" class="wdform_row ui-sortable-handle">%1 - Name:%</div><div wdid="2" class="wdform_row ui-sortable-handle">%2 - E-mail:%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - Phone Number:%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - SELECT COLLEGE%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - OTHER SPECIFY HERE%</div><div wdid="7" class="wdform_row ui-sortable-handle">%7 - Word Verification:%</div><div wdid="8" class="wdform_row ui-sortable-handle">%8 - type_submit_reset_8%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 8, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 9, 1, \'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone Number:#**label**#type_number#****#5#**id**#SELECT COLLEGE#**label**#type_own_select#****#6#**id**#OTHER SPECIFY HERE#**label**#type_text#****#7#**id**#Word Verification:#**label**#type_captcha#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#\', \'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone Number:#**label**#type_number#****#5#**id**#SELECT COLLEGE#**label**#type_own_select#****#6#**id**#OTHER SPECIFY HERE#**label**#type_text#****#7#**id**#Word Verification:#**label**#type_captcha#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***yes*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_number*:*type*:*Phone Number:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*5*:*id*:*type_own_select*:*type*:*SELECT COLLEGE*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**** GGSCMT,KHARAR*** DOABA KHARAR *** CAMBRIDGE COLLEGE FATEHGARH *** INDOGLOBAL *** QUEST COLLEGE *** UNIVERSAL ,LALRU *** OTHER PLEASE SPECIFY BELOW *:*w_choices*:*true***false***false***false***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false***false***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:**** GGSCMT,KHARAR*** DOABA KHARAR *** CAMBRIDGE COLLEGE FATEHGARH *** INDOGLOBAL *** QUEST COLLEGE *** UNIVERSAL ,LALRU *** OTHER PLEASE SPECIFY BELOW *:*w_choices_value*:***********************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*6*:*id*:*type_text*:*type*:*OTHER SPECIFY HERE*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*7*:*id*:*type_captcha*:*type*:*Word Verification:*:*w_field_label*:*160*:*w_field_label_size*:*left*:*w_field_label_pos*:*6*:*w_digit*:**:*w_class*:**:*new_field*:*8*:*id*:*type_submit_reset*:*type*:*type_submit_reset_8*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
264
+ $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Camp Registration Form\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="1" class="wdform_row ui-sortable-handle">%1 - Camper Name:%</div><div wdid="2" class="wdform_row ui-sortable-handle">%2 - Camper Age Group:%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - Desire Cabin:%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - Does any one have allergies?%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - Has the camper been camping before?%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - Any questions or concern:%</div><div wdid="7" class="wdform_row ui-sortable-handle">%7 - type_submit_reset_7%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 15, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 8, 1,\'1#**id**#Camper Name:#**label**#type_name#****#2#**id**#Camper Age Group:#**label**#type_own_select#****#3#**id**#Desire Cabin:#**label**#type_radio#****#4#**id**#Does any one have allergies?#**label**#type_radio#****#5#**id**#Has the camper been camping before?#**label**#type_radio#****#6#**id**#Any questions or concern:#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', \'1#**id**#Camper Name:#**label**#type_name#****#2#**id**#Camper Age Group:#**label**#type_own_select#****#3#**id**#Desire Cabin:#**label**#type_radio#****#4#**id**#Does any one have allergies?#**label**#type_radio#****#5#**id**#Has the camper been camping before?#**label**#type_radio#****#6#**id**#Any questions or concern:#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\',0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0,\'\', \'\', \'USD\', 0, \'1*:*id*:*type_name*:*type*:*Camper Name:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_own_select*:*type*:*Camper Age Group:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:****6-8***8-12***12-15*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****6-8***8-12***12-15*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*Desire Cabin:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Cabin 1***Cabin 2***Cabin 3***Cabin 4***Cabin 5***Cabin 6***Cabin 7*:*w_choices*:*false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Cabin 1***Cabin 2***Cabin 3***Cabin 4***Cabin 5***Cabin 6***Cabin 7*:*w_choices_value*:********************:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*Does any one have allergies?*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*Has the camper been camping before?*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*Any questions or concern:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
265
 
266
+ $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Business Demographic Survey\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"></div></div><div wdid="1" type="type_section_break" class="wdform_tr_section_break">%1 - custom_1%</div><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="2" class="wdform_row ui-sortable-handle">%2 - <b>What is your employment status?</b>%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - <b>What is your level of education?</b>%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - <b>In which industry do you work?</b>%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - <b>What is the annual revenue of your company?</b>%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - Word Verification:%</div><div wdid="7" class="wdform_row ui-sortable-handle">%7 - type_submit_reset_7%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 10, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 1, \'<p>%all%</p>\', \'<p>%all%</p>\', 8, 1, \'2#**id**#What is your employment status?#**label**#type_radio#****#3#**id**#What is your level of education?#**label**#type_radio#****#4#**id**#In which industry do you work?#**label**#type_own_select#****#5#**id**#What is the annual revenue of your company?#**label**#type_radio#****#6#**id**#Word Verification:#**label**#type_captcha#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', \'2#**id**#What is your employment status?#**label**#type_radio#****#3#**id**#What is your level of education?#**label**#type_radio#****#4#**id**#In which industry do you work?#**label**#type_own_select#****#5#**id**#What is the annual revenue of your company?#**label**#type_radio#****#6#**id**#Word Verification:#**label**#type_captcha#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h2 id="header_1" style="font-size: 1.285714286rem; font-family: Helvetica, Arial, sans-serif; color: rgb(68, 68, 68); clear: both; line-height: 1.6; margin: 1.714285714rem 0px;">Business Demographic Survey</h2><p style="line-height: 1.714285714; margin: 0px 0px 1.714285714rem; color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px;"></p><div id="subHeader_1" style="color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 14px;">Thank you for joining our business demographic survey. Please give us your feedback by filling in the information bellow.</div><p><br></p>*:*w_editor*:**:*new_field*:*2*:*id*:*type_radio*:*type*:*<b>What is your employment status?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Employed full time***Trade or Vocational degree***Not employed, but looking for work***Not employed and not looking for work***Retired***Student***Homemaker***Prefer not to answer*:*w_choices*:*false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Employed full time***Trade or Vocational degree***Not employed, but looking for work***Not employed and not looking for work***Retired***Student***Homemaker***Prefer not to answer*:*w_choices_value*:***********************:*w_choices_params*:**:*w_class*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*<b>What is your level of education?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Some high school***High school graduate or equivalent***Trade or Vocational Degree***Some college***Associate degree***Bachelor&#39;s degree***Graduate or Professional degree***Prefer not to answer*:*w_choices*:*false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Some high school***High school graduate or equivalent***Trade or Vocational Degree***Some college***Associate degree***Bachelor&#39;s degree***Graduate or Professional degree***Prefer not to answer*:*w_choices_value*:***********************:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_own_select*:*type*:*<b>In which industry do you work?</b>*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:****option 1***option 2***option 3*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****option 1***option 2***option 3*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*<b>What is the annual revenue of your company?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Under $10,000***$10,001 to $50,000***$50,001 to $100,000***$100,001 to $500,000***$500,001 to $1 Million***$1 Million to $10 Million***$10 Million to $50 Million***$50 Million to $100 Million***Over $100 Million*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Under $10,000***$10,001 to $50,000***$50,001 to $100,000***$100,001 to $500,000***$500,001 to $1 Million***$1 Million to $10 Million***$10 Million to $50 Million***$50 Million to $100 Million***Over $100 Million*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_captcha*:*type*:*Word Verification:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*6*:*w_digit*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
267
+ $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Register Your Business\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="1" class="wdform_row ui-sortable-handle">%1 - Business Owner %</div><div wdid="2" class="wdform_row ui-sortable-handle">%2 - Business Name%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - E-mail%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - Address:%</div><div wdid="10" class="wdform_row ui-sortable-handle">%10 - Type of Business%</div><div wdid="11" class="wdform_row ui-sortable-handle">%11 - Message%</div><div wdid="12" class="wdform_row ui-sortable-handle">%12 - type_submit_reset_12%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 26, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 13, 1, \'1#**id**#Business Owner #**label**#type_name#****#2#**id**#Business Name#**label**#type_text#****#3#**id**#E-mail#**label**#type_submitter_mail#****#4#**id**#Street Address#**label**#type_address#****#5#**id**#Street Address Line 2#**label**#type_address#****#6#**id**#City#**label**#type_address#****#7#**id**#State / Province / Region#**label**#type_address#****#8#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Country#**label**#type_address#****#10#**id**#Type of Business#**label**#type_own_select#****#11#**id**#Message#**label**#type_textarea#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#\', \'1#**id**#Business Owner #**label**#type_name#****#2#**id**#Business Name#**label**#type_text#****#3#**id**#E-mail#**label**#type_submitter_mail#****#4#**id**#Street Address#**label**#type_address#****#5#**id**#Street Address Line 2#**label**#type_address#****#6#**id**#City#**label**#type_address#****#7#**id**#State / Province / Region#**label**#type_address#****#8#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Country#**label**#type_address#****#10#**id**#Type of Business#**label**#type_own_select#****#11#**id**#Message#**label**#type_textarea#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_name*:*type*:*Business Owner *:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*2*:*id*:*type_text*:*type*:*Business Name*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no****:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*10*:*id*:*type_own_select*:*type*:*Type of Business*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:*Select value***option 1***option 2*:*w_choices*:*true***false***false*:*w_choices_checked*:*true***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:****option 1***option 2*:*w_choices_value*:********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*11*:*id*:*type_textarea*:*type*:*Message*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*12*:*id*:*type_submit_reset*:*type*:*type_submit_reset_12*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
268
+ $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Cupcake Order Form\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="1" class="wdform_row ui-sortable-handle">%1 - Date%</div><div wdid="2" class="wdform_row ui-sortable-handle">%2 - Name%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - E-mail:%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - <b>Cupcakes <br> Flavors (1 doz. minimum)</b>%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - Quantity%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - Details (if any)%</div><div wdid="7" class="wdform_row ui-sortable-handle">%7 - type_submit_reset_7%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 6, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 8, 1, \'1#**id**#Date#**label**#type_date#****#2#**id**#Name#**label**#type_name#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_checkbox#****#5#**id**#Quantity#**label**#type_own_select#****#6#**id**#Details (if any)#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', \'1#**id**#Date#**label**#type_date#****#2#**id**#Name#**label**#type_name#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_checkbox#****#5#**id**#Quantity#**label**#type_own_select#****#6#**id**#Details (if any)#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_date*:*type*:*Date*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:**:*w_date*:*yes*:*w_required*:**:*w_class*:*%Y-%m-%d*:*w_format*:*...*:*w_but_val*:*no*:*w_disable_past_days*:**:*new_field*:*2*:*id*:*type_name*:*type*:*Name*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:**:*new_field*:*4*:*id*:*type_checkbox*:*type*:*<b>Cupcakes <br> Flavors (1 doz. minimum)</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Red Velvet ($150.00 TTD)***Vanilla ($100.00 TTD)***Chocolate ($120.00 TTD)***Guinness ($150.00 TTD)***Coconut ($120.00 TTD)***Lemon ($100.00 TTD)***Chocolate Mint ($120.00 TTD)*:*w_choices*:*false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Red Velvet ($150.00 TTD)***Vanilla ($100.00 TTD)***Chocolate ($120.00 TTD)***Guinness ($150.00 TTD)***Coconut ($120.00 TTD)***Lemon ($100.00 TTD)***Chocolate Mint ($120.00 TTD)*:*w_choices_value*:********************:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_own_select*:*type*:*Quantity*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*50*:*w_size*:****1***2***3***4***5***6***7***8***9***10*:*w_choices*:*true***false***false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false***false***false***false***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****1***2***3***4***5***6***7***8***9***10*:*w_choices_value*:********************************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*Details (if any)*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
269
+ $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Seminar Evaluation Survey\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"></div></div><div wdid="1" type="type_section_break" class="wdform_tr_section_break">%1 - custom_1%</div><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="2" class="wdform_row ui-sortable-handle">%2 - <b>Company</b>%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - <b>Occupation</b>%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - <b>Was it worth its money?</b>%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - <b>On average how would you rate the seminar?</b>%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - type_submit_reset_6%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 16, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 7, 1, \'2#**id**#Company#**label**#type_text#****#3#**id**#Occupation#**label**#type_text#****#4#**id**#Was it worth its money?#**label**#type_radio#****#5#**id**#On average how would you rate the seminar?#**label**#type_radio#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#\', \'2#**id**#Company#**label**#type_text#****#3#**id**#Occupation#**label**#type_text#****#4#**id**#Was it worth its money?#**label**#type_radio#****#5#**id**#On average how would you rate the seminar?#**label**#type_radio#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h1 id="header_1" style="font-size: 1.5rem; font-family: Helvetica, Arial, sans-serif; color: rgb(68, 68, 68); clear: both; line-height: 1.5; margin: 1.714285714rem 0px;">Seminar Evaluation Survey</h1><div id="subHeader_1" style="color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 14px;">Please take a few minutes to complete this evaluation survey</div>*:*w_editor*:**:*new_field*:*2*:*id*:*type_text*:*type*:*<b>Company</b>*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*3*:*id*:*type_text*:*type*:*<b>Occupation</b>*:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*<b>Was it worth its money?</b>*:*w_field_label*:*200*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*<b>On average how would you rate the seminar?</b>*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Very good***Good***Neutral***Bad***Very bad*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Very good***Good***Neutral***Bad***Very bad*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_submit_reset*:*type*:*type_submit_reset_6*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
270
+ $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Restaurant Evaluation Survey\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"></div></div><div wdid="1" type="type_section_break" class="wdform_tr_section_break">%1 - custom_1%</div><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="2" class="wdform_row ui-sortable-handle">%2 - Day Visited:%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - <b>Dine In / Take Out:</b>%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - <b>Food Quality:</b>%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - <b>Speed of Service:</b>%</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - <b>Any comments, questions or suggestions?</b>%</div><div wdid="7" class="wdform_row ui-sortable-handle">%7 - type_submit_reset_7%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 21, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 8, 1, \'2#**id**#Day Visited:#**label**#type_date#****#3#**id**#Dine In / Take Out:#**label**#type_radio#****#4#**id**#Food Quality:#**label**#type_radio#****#5#**id**#Speed of Service:#**label**#type_radio#****#6#**id**#Any comments, questions or suggestions?#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', \'2#**id**#Day Visited:#**label**#type_date#****#3#**id**#Dine In / Take Out:#**label**#type_radio#****#4#**id**#Food Quality:#**label**#type_radio#****#5#**id**#Speed of Service:#**label**#type_radio#****#6#**id**#Any comments, questions or suggestions?#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h2 id="header_21" style="font-size: 1.285714286rem; font-family: Helvetica, Arial, sans-serif; color: rgb(68, 68, 68); clear: both; line-height: 1.6; margin: 1.714285714rem 0px;">Restaurant Evaluation Survey</h2><div id="subHeader_21" style="color: rgb(68, 68, 68); font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 14px;">Please let us know how was the food and service.</div><p><br></p>*:*w_editor*:**:*new_field*:*2*:*id*:*type_date*:*type*:*Day Visited:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:**:*w_date*:*no*:*w_required*:**:*w_class*:*%Y-%m-%d*:*w_format*:*...*:*w_but_val*:*no*:*w_disable_past_days*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*<b>Dine In / Take Out:</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Dine In***Dine Out*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Dine In***Dine Out*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*<b>Food Quality:</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Excellent***Good***Average***Dissatisfied*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Excellent***Good***Average***Dissatisfied*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*<b>Speed of Service:</b>*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Excellent***Good***Average***Dissatisfied*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Excellent***Good***Average***Dissatisfied*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*<b>Any comments, questions or suggestions?</b>*:*w_field_label*:*300*:*w_field_label_size*:*top*:*w_field_label_pos*:*300*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
271
+ $wpdb->query('INSERT INTO `' . $wpdb->prefix . 'formmaker` VALUES(NULL, \'Product Survey\', \'\', \'<div class="wdform-page-and-images" style="display:table; border-top:0px solid black;"><div id="form_id_tempform_view1" class="wdform_page" page_title="Untitled page" next_title="Next" next_type="text" next_class="wdform-page-button" next_checkable="false" previous_title="Previous" previous_type="text" previous_class="wdform-page-button" previous_checkable="false"><div class="wdform_section"><div class="wdform_column ui-sortable"></div></div><div wdid="1" type="type_section_break" class="wdform_tr_section_break">%1 - custom_1%</div><div class="wdform_section"><div class="wdform_column ui-sortable"><div wdid="2" class="wdform_row ui-sortable-handle">%2 - 1. Please indicate if you agree or disagree with the following statements%</div><div wdid="3" class="wdform_row ui-sortable-handle">%3 - 2. How likely are you to recommend [Product/Service] to a friend or co-worker?%</div><div wdid="4" class="wdform_row ui-sortable-handle">%4 - 3. What is the amount you would ever pay for a product like ours%</div><div wdid="5" class="wdform_row ui-sortable-handle">%5 - 4. Please rate the product %</div><div wdid="6" class="wdform_row ui-sortable-handle">%6 - type_submit_reset_6%</div></div></div><div valign="top" class="wdform_footer" style="width: 100%;"><div style="width: 100%;"><div style="width: 100%; display: table;"><div style="display: table-row-group;"><div id="form_id_temppage_nav1" style="display: table-row;"></div></div></div></div></div></div></div>\', 29, \'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}\', \'\', \'\', 0, \'%all%\', \'%all%\', 7, 1, \'2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#\', \'2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#\', 0, \'none\', \'false\', \'true\', \'\', \'\', \'\', 0, \'\', \'\', \'USD\', 0, \'1*:*id*:*type_section_break*:*type*:*custom_1*:*w_field_label*:*<h1 class="sg-title" data-mce-style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;" style="font-size: 2.2em; font-weight: normal; color: rgb(255, 255, 255); line-height: normal;">Product Survey</h1>*:*w_editor*:**:*new_field*:*2*:*id*:*type_matrix*:*type*:*1. Please indicate if you agree or disagree with the following statements*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*radio*:*w_field_input_type*:****Product is affordable***Product is valuable***Product is better<br> than other products on<br> the market***Product is easy to use*:*w_rows*:****Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree*:*w_columns*:*no*:*w_required*:*wdform_matrix*:*w_class*:**:*w_textbox_size*:**:*new_field*:*3*:*id*:*type_scale_rating*:*type*:*2. How likely are you to recommend [Product/Service] to a friend or co-worker?*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*Will not recommend *** I will recommend*:*w_mini_labels*:*5*:*w_scale_amount*:*no*:*w_required*:*wdform_scale_rating*:*w_class*:**:*new_field*:*4*:*id*:*type_range*:*type*:*3. What is the amount you would ever pay for a product like ours*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*40*:*w_field_range_width*:*1*:*w_field_range_step*:*null*:*w_field_value1*:*null*:*w_field_value2*:*From***To*:*w_mini_labels*:*no*:*w_required*:**:*w_class*:**:*new_field*:*5*:*id*:*type_star_rating*:*type*:*4. Please rate the product *:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*yellow*:*w_field_label_col*:*10*:*w_star_amount*:*no*:*w_required*:*wdform_star_rating*:*w_class*:**:*new_field*:*6*:*id*:*type_submit_reset*:*type*:*type_submit_reset_6*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*\', 1, 1, \'*\', \'\', \'\', \'\', \'\', 1, \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', \'\', 1, 1, 1, 1,\'administrator,\',1,\'\',\'\', 0, 0, 0, 0, 1)');
272
  }
273
  }
274
  }
form_maker_update.php CHANGED
@@ -420,19 +420,19 @@ padding:3px !important;
420
  $updates = $updates . ", `show_title`='false'";
421
  $updates = $updates . ", `show_numbers`='true'";
422
  $updates = $updates . ", `javascript`='" . $form->javascript . "
423
- // before form is load
424
  function before_load()
425
  {
426
 
427
  }
428
 
429
- // before form submit
430
  function before_submit()
431
  {
432
  // IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don't need to return any value if you don't want to stop the submission.
433
  }
434
 
435
- // before form reset
436
  function before_reset()
437
  {
438
 
@@ -632,15 +632,15 @@ function before_reset()
632
  $ajax_captcha_src = add_query_arg(array('action' => 'formmakerwdcaptcha', 'digit' => 6, 'i' => 'form_id_temp'), admin_url('admin-ajax.php'));
633
  $form_maker_rows10 = <<<HEREQUERYFORM
634
  INSERT INTO `{$table_name}` (`title`, `mail`, `form`, `form_front`, `theme`, `javascript`, `submit_text`, `url`, `submit_text_type`, `script_mail`, `script_mail_user`, `counter`, `label_order`, `label_order_current`, `article_id`, `pagination`, `show_title`, `show_numbers`, `public_key`, `private_key`, `recaptcha_theme`, `paypal_mode`, `checkout_mode`, `paypal_email`, `payment_currency`, `tax`, `from_mail`, `from_name`, `script1`, `script2`, `script_user1`, `script_user2`) VALUES
635
- ('Registration Form With Payment', '', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="13" type="type_name"><td colspan="2" id="13_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="13_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Name</span><span id="13_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="top" align="left" id="13_element_sectionform_id_temp" class=""><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 192px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 192px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_13" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="2" type="type_submitter_mail"><td colspan="2" id="2_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="2_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="2_label_sectionform_id_temp" class=""><span id="2_element_labelform_id_temp" class="label">E-mail</span><span id="2_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="middle" align="left" id="2_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="2_typeform_id_temp" id="2_typeform_id_temp"><input type="hidden" value="yes" name="2_requiredform_id_temp" id="2_requiredform_id_temp"><input type="hidden" value="no" name="2_sendform_id_temp" id="2_sendform_id_temp"><input type="hidden" value="" name="2_uniqueform_id_temp" id="2_uniqueform_id_temp"><input type="text" class="input_deactive" id="2_elementform_id_temp" name="2_elementform_id_temp" value="" title="" onfocus="delete_value(''2_elementform_id_temp'')" onblur="return_value(''2_elementform_id_temp'')" onchange="change_value(''2_elementform_id_temp'')" style="width: 400px;"></td></tr></tbody></table></td><td id="X_2" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="14" type="type_address"><td colspan="2" id="14_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="14_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="14_label_sectionform_id_temp" class="wdform_address"><span id="14_element_labelform_id_temp" class="label">Address</span><span id="14_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="14_element_sectionform_id_temp" class="wdform_address"><input type="hidden" value="type_address" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" name="14_disable_fieldsform_id_temp" id="14_disable_fieldsform_id_temp" street1="no" street2="no" city="no" state="no" postal="no" country="no"><div id="14_div_address" style="width: 300px;"><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street1form_id_temp" name="14_street1form_id_temp" onchange="change_value(''14_street1form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street1" style="display: block;">Street Address</label></span><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street2form_id_temp" name="15_street2form_id_temp" onchange="change_value(''14_street2form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street2" style="display: block;">Street Address Line 2</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_cityform_id_temp" name="16_cityform_id_temp" onchange="change_value(''14_cityform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_city" style="display: block;">City</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><input type="text" id="14_stateform_id_temp" name="17_stateform_id_temp" onchange="change_value(''14_stateform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_state" style="display: block;">State / Province / Region</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_postalform_id_temp" name="18_postalform_id_temp" onchange="change_value(''14_postalform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_postal" style="display: block;">Postal / Zip Code</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><select type="text" id="14_countryform_id_temp" name="19_countryform_id_temp" onchange="change_value(''14_countryform_id_temp'')" style="width: 100%;"><option value=""></option><option value="Afghanistan">Afghanistan</option><option value="Albania">Albania</option><option value="Algeria">Algeria</option><option value="Andorra">Andorra</option><option value="Angola">Angola</option><option value="Antigua and Barbuda">Antigua and Barbuda</option><option value="Argentina">Argentina</option><option value="Armenia">Armenia</option><option value="Australia">Australia</option><option value="Austria">Austria</option><option value="Azerbaijan">Azerbaijan</option><option value="Bahamas">Bahamas</option><option value="Bahrain">Bahrain</option><option value="Bangladesh">Bangladesh</option><option value="Barbados">Barbados</option><option value="Belarus">Belarus</option><option value="Belgium">Belgium</option><option value="Belize">Belize</option><option value="Benin">Benin</option><option value="Bhutan">Bhutan</option><option value="Bolivia">Bolivia</option><option value="Bosnia and Herzegovina">Bosnia and Herzegovina</option><option value="Botswana">Botswana</option><option value="Brazil">Brazil</option><option value="Brunei">Brunei</option><option value="Bulgaria">Bulgaria</option><option value="Burkina Faso">Burkina Faso</option><option value="Burundi">Burundi</option><option value="Cambodia">Cambodia</option><option value="Cameroon">Cameroon</option><option value="Canada">Canada</option><option value="Cape Verde">Cape Verde</option><option value="Central African Republic">Central African Republic</option><option value="Chad">Chad</option><option value="Chile">Chile</option><option value="China">China</option><option value="Colombi">Colombi</option><option value="Comoros">Comoros</option><option value="Congo (Brazzaville)">Congo (Brazzaville)</option><option value="Congo">Congo</option><option value="Costa Rica">Costa Rica</option><option value="Cote d''Ivoire">Cote d''Ivoire</option><option value="Croatia">Croatia</option><option value="Cuba">Cuba</option><option value="Cyprus">Cyprus</option><option value="Czech Republic">Czech Republic</option><option value="Denmark">Denmark</option><option value="Djibouti">Djibouti</option><option value="Dominica">Dominica</option><option value="Dominican Republic">Dominican Republic</option><option value="East Timor (Timor Timur)">East Timor (Timor Timur)</option><option value="Ecuador">Ecuador</option><option value="Egypt">Egypt</option><option value="El Salvador">El Salvador</option><option value="Equatorial Guinea">Equatorial Guinea</option><option value="Eritrea">Eritrea</option><option value="Estonia">Estonia</option><option value="Ethiopia">Ethiopia</option><option value="Fiji">Fiji</option><option value="Finland">Finland</option><option value="France">France</option><option value="Gabon">Gabon</option><option value="Gambia, The">Gambia, The</option><option value="Georgia">Georgia</option><option value="Germany">Germany</option><option value="Ghana">Ghana</option><option value="Greece">Greece</option><option value="Grenada">Grenada</option><option value="Guatemala">Guatemala</option><option value="Guinea">Guinea</option><option value="Guinea-Bissau">Guinea-Bissau</option><option value="Guyana">Guyana</option><option value="Haiti">Haiti</option><option value="Honduras">Honduras</option><option value="Hungary">Hungary</option><option value="Iceland">Iceland</option><option value="India">India</option><option value="Indonesia">Indonesia</option><option value="Iran">Iran</option><option value="Iraq">Iraq</option><option value="Ireland">Ireland</option><option value="Israel">Israel</option><option value="Italy">Italy</option><option value="Jamaica">Jamaica</option><option value="Japan">Japan</option><option value="Jordan">Jordan</option><option value="Kazakhstan">Kazakhstan</option><option value="Kenya">Kenya</option><option value="Kiribati">Kiribati</option><option value="Korea, North">Korea, North</option><option value="Korea, South">Korea, South</option><option value="Kuwait">Kuwait</option><option value="Kyrgyzstan">Kyrgyzstan</option><option value="Laos">Laos</option><option value="Latvia">Latvia</option><option value="Lebanon">Lebanon</option><option value="Lesotho">Lesotho</option><option value="Liberia">Liberia</option><option value="Libya">Libya</option><option value="Liechtenstein">Liechtenstein</option><option value="Lithuania">Lithuania</option><option value="Luxembourg">Luxembourg</option><option value="Macedonia">Macedonia</option><option value="Madagascar">Madagascar</option><option value="Malawi">Malawi</option><option value="Malaysia">Malaysia</option><option value="Maldives">Maldives</option><option value="Mali">Mali</option><option value="Malta">Malta</option><option value="Marshall Islands">Marshall Islands</option><option value="Mauritania">Mauritania</option><option value="Mauritius">Mauritius</option><option value="Mexico">Mexico</option><option value="Micronesia">Micronesia</option><option value="Moldova">Moldova</option><option value="Monaco">Monaco</option><option value="Mongolia">Mongolia</option><option value="Morocco">Morocco</option><option value="Mozambique">Mozambique</option><option value="Myanmar">Myanmar</option><option value="Namibia">Namibia</option><option value="Nauru">Nauru</option><option value="Nepa">Nepa</option><option value="Netherlands">Netherlands</option><option value="New Zealand">New Zealand</option><option value="Nicaragua">Nicaragua</option><option value="Niger">Niger</option><option value="Nigeria">Nigeria</option><option value="Norway">Norway</option><option value="Oman">Oman</option><option value="Pakistan">Pakistan</option><option value="Palau">Palau</option><option value="Panama">Panama</option><option value="Papua New Guinea">Papua New Guinea</option><option value="Paraguay">Paraguay</option><option value="Peru">Peru</option><option value="Philippines">Philippines</option><option value="Poland">Poland</option><option value="Portugal">Portugal</option><option value="Qatar">Qatar</option><option value="Romania">Romania</option><option value="Russia">Russia</option><option value="Rwanda">Rwanda</option><option value="Saint Kitts and Nevis">Saint Kitts and Nevis</option><option value="Saint Lucia">Saint Lucia</option><option value="Saint Vincent">Saint Vincent</option><option value="Samoa">Samoa</option><option value="San Marino">San Marino</option><option value="Sao Tome and Principe">Sao Tome and Principe</option><option value="Saudi Arabia">Saudi Arabia</option><option value="Senegal">Senegal</option><option value="Serbia and Montenegro">Serbia and Montenegro</option><option value="Seychelles">Seychelles</option><option value="Sierra Leone">Sierra Leone</option><option value="Singapore">Singapore</option><option value="Slovakia">Slovakia</option><option value="Slovenia">Slovenia</option><option value="Solomon Islands">Solomon Islands</option><option value="Somalia">Somalia</option><option value="South Africa">South Africa</option><option value="Spain">Spain</option><option value="Sri Lanka">Sri Lanka</option><option value="Sudan">Sudan</option><option value="Suriname">Suriname</option><option value="Swaziland">Swaziland</option><option value="Sweden">Sweden</option><option value="Switzerland">Switzerland</option><option value="Syria">Syria</option><option value="Taiwan">Taiwan</option><option value="Tajikistan">Tajikistan</option><option value="Tanzania">Tanzania</option><option value="Thailand">Thailand</option><option value="Togo">Togo</option><option value="Tonga">Tonga</option><option value="Trinidad and Tobago">Trinidad and Tobago</option><option value="Tunisia">Tunisia</option><option value="Turkey">Turkey</option><option value="Turkmenistan">Turkmenistan</option><option value="Tuvalu">Tuvalu</option><option value="Uganda">Uganda</option><option value="Ukraine">Ukraine</option><option value="United Arab Emirates">United Arab Emirates</option><option value="United Kingdom">United Kingdom</option><option value="United States">United States</option><option value="Uruguay">Uruguay</option><option value="Uzbekistan">Uzbekistan</option><option value="Vanuatu">Vanuatu</option><option value="Vatican City">Vatican City</option><option value="Venezuela">Venezuela</option><option value="Vietnam">Vietnam</option><option value="Yemen">Yemen</option><option value="Zambia">Zambia</option><option value="Zimbabwe">Zimbabwe</option></select><label class="mini_label" id="14_mini_label_country" style="display: block;">Country</label></span></div></td></tr></tbody></table></td><td id="X_14" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="20" type="type_radio"><td colspan="2" id="20_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="20_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="20_label_sectionform_id_temp" class=""><span id="20_element_labelform_id_temp" class="label">Registration Package</span><span id="20_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="20_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="20_typeform_id_temp" id="20_typeform_id_temp"><input type="hidden" value="no" name="20_requiredform_id_temp" id="20_requiredform_id_temp"><input type="hidden" value="no" name="20_randomizeform_id_temp" id="20_randomizeform_id_temp"><input type="hidden" value="no" name="20_allow_otherform_id_temp" id="20_allow_otherform_id_temp"><input type="hidden" value="1" name="20_rowcol_numform_id_temp" id="20_rowcol_numform_id_temp"><table><tbody id="20_table_little"><tr id="20_element_tr0"><td valign="top" id="20_td_little0" idi="0"><input type="radio" value="Standard Registration ($50 USD)" id="20_elementform_id_temp0" name="20_elementform_id_temp" onclick="set_default(''20'',''0'',''form_id_temp'')"><label id="20_label_element0" class="ch_rad_label" for="20_elementform_id_temp0">Standard Registration ($50 USD)</label></td></tr><tr id="20_element_tr1"><td valign="top" id="20_td_little1" idi="1"><input type="radio" value="Premium Registration ($90 USD)" id="20_elementform_id_temp1" name="20_elementform_id_temp" onclick="set_default(''20'',''1'',''form_id_temp'')"><label id="20_label_element1" class="ch_rad_label" for="20_elementform_id_temp1">Premium Registration ($90 USD)</label></td></tr><tr id="20_element_tr2"><td valign="top" id="20_td_little2" idi="2"><input type="radio" value="Corporate Registration ($200 USD)" id="20_elementform_id_temp2" name="20_elementform_id_temp" onclick="set_default(''20'',''2'',''form_id_temp'')"><label id="20_label_element2" class="ch_rad_label" for="20_elementform_id_temp2">Corporate Registration ($200 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_20" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="21" type="type_radio"><td colspan="2" id="21_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="21_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="21_label_sectionform_id_temp" class=""><span id="21_element_labelform_id_temp" class="label">Accommodation Package</span><span id="21_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="21_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="21_typeform_id_temp" id="21_typeform_id_temp"><input type="hidden" value="no" name="21_requiredform_id_temp" id="21_requiredform_id_temp"><input type="hidden" value="no" name="21_randomizeform_id_temp" id="21_randomizeform_id_temp"><input type="hidden" value="no" name="21_allow_otherform_id_temp" id="21_allow_otherform_id_temp"><input type="hidden" value="1" name="21_rowcol_numform_id_temp" id="21_rowcol_numform_id_temp"><table><tbody id="21_table_little"><tr id="21_element_tr0"><td valign="top" id="21_td_little0" idi="0"><input type="radio" value="None" id="21_elementform_id_temp0" name="21_elementform_id_temp" onclick="set_default(''21'',''0'',''form_id_temp'')"><label id="21_label_element0" class="ch_rad_label" for="21_elementform_id_temp0">None</label></td></tr><tr id="21_element_tr1"><td valign="top" id="21_td_little1" idi="1"><input type="radio" value="2 Days in 3 Star Hotel ($300 USD)" id="21_elementform_id_temp1" name="21_elementform_id_temp" onclick="set_default(''21'',''1'',''form_id_temp'')"><label id="21_label_element1" class="ch_rad_label" for="21_elementform_id_temp1">2 Days in 3 Star Hotel ($300 USD)</label></td></tr><tr id="21_element_tr2"><td valign="top" id="21_td_little2" idi="2"><input type="radio" value="2 Days in 4 Star Hotel ($550 USD)" id="21_elementform_id_temp2" name="21_elementform_id_temp" onclick="set_default(''21'',''2'',''form_id_temp'')"><label id="21_label_element2" class="ch_rad_label" for="21_elementform_id_temp2">2 Days in 4 Star Hotel ($550 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_21" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="11" type="type_paypal_checkbox"><td colspan="2" id="11_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="11_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="11_label_sectionform_id_temp" class=""><span id="11_element_labelform_id_temp" class="label">Additional</span><span id="11_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="11_element_sectionform_id_temp" class=""><input type="hidden" value="type_paypal_checkbox" name="11_typeform_id_temp" id="11_typeform_id_temp"><input type="hidden" value="no" name="11_requiredform_id_temp" id="11_requiredform_id_temp"><input type="hidden" value="no" name="11_randomizeform_id_temp" id="11_randomizeform_id_temp"><input type="hidden" value="no" name="11_allow_otherform_id_temp" id="11_allow_otherform_id_temp"><input type="hidden" value="0" name="11_allow_other_numform_id_temp" id="11_allow_other_numform_id_temp"><table><tbody id="11_table_little"><tr id="11_element_tr0"><td valign="top" id="11_td_little0" idi="0"><input type="checkbox" id="11_elementform_id_temp0" name="11_elementform_id_temp0" value="10" onclick="set_checked(''11'',''0'',''form_id_temp'')"><label id="11_label_element0" class="ch_rad_label" for="11_elementform_id_temp0">I''m also buying the t-shirt of the event ($10 USD)</label><input type="hidden" id="11_elementlabel_form_id_temp0" name="11_elementform_id_temp0_label" value="I''m also buying the t-shirt of the event ($10 USD)"></td></tr></tbody></table><div id="11_divform_id_temp"></div></td></tr></tbody></table></td><td id="X_11" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');">Reset</button></td></tr></tbody></table></td><td id="X_12" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img1" style="float:right ;"><tr><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_2" onclick="show_or_hide(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table>', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="13" type="type_name"><td colspan="2" id="13_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="13_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Name</span><span id="13_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="top" align="left" id="13_element_sectionform_id_temp" class=""><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 192px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 192px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="2" type="type_submitter_mail"><td colspan="2" id="2_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="2_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="2_label_sectionform_id_temp" class=""><span id="2_element_labelform_id_temp" class="label">E-mail</span><span id="2_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="middle" align="left" id="2_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="2_typeform_id_temp" id="2_typeform_id_temp"><input type="hidden" value="yes" name="2_requiredform_id_temp" id="2_requiredform_id_temp"><input type="hidden" value="no" name="2_sendform_id_temp" id="2_sendform_id_temp"><input type="hidden" value="" name="2_uniqueform_id_temp" id="2_uniqueform_id_temp"><input type="text" class="input_deactive" id="2_elementform_id_temp" name="2_elementform_id_temp" value="" title="" onfocus="delete_value(''2_elementform_id_temp'')" onblur="return_value(''2_elementform_id_temp'')" onchange="change_value(''2_elementform_id_temp'')" style="width: 400px;"></td></tr></tbody></table></td></tr><tr id="14" type="type_address"><td colspan="2" id="14_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="14_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="14_label_sectionform_id_temp" class="wdform_address"><span id="14_element_labelform_id_temp" class="label">Address</span><span id="14_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="14_element_sectionform_id_temp" class="wdform_address"><input type="hidden" value="type_address" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" name="14_disable_fieldsform_id_temp" id="14_disable_fieldsform_id_temp" street1="no" street2="no" city="no" state="no" postal="no" country="no"><div id="14_div_address" style="width: 300px;"><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street1form_id_temp" name="14_street1form_id_temp" onchange="change_value(''14_street1form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street1" style="display: block;">Street Address</label></span><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street2form_id_temp" name="15_street2form_id_temp" onchange="change_value(''14_street2form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street2" style="display: block;">Street Address Line 2</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_cityform_id_temp" name="16_cityform_id_temp" onchange="change_value(''14_cityform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_city" style="display: block;">City</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><input type="text" id="14_stateform_id_temp" name="17_stateform_id_temp" onchange="change_value(''14_stateform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_state" style="display: block;">State / Province / Region</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_postalform_id_temp" name="18_postalform_id_temp" onchange="change_value(''14_postalform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_postal" style="display: block;">Postal / Zip Code</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><select type="text" id="14_countryform_id_temp" name="19_countryform_id_temp" onchange="change_value(''14_countryform_id_temp'')" style="width: 100%;"><option value=""></option><option value="Afghanistan">Afghanistan</option><option value="Albania">Albania</option><option value="Algeria">Algeria</option><option value="Andorra">Andorra</option><option value="Angola">Angola</option><option value="Antigua and Barbuda">Antigua and Barbuda</option><option value="Argentina">Argentina</option><option value="Armenia">Armenia</option><option value="Australia">Australia</option><option value="Austria">Austria</option><option value="Azerbaijan">Azerbaijan</option><option value="Bahamas">Bahamas</option><option value="Bahrain">Bahrain</option><option value="Bangladesh">Bangladesh</option><option value="Barbados">Barbados</option><option value="Belarus">Belarus</option><option value="Belgium">Belgium</option><option value="Belize">Belize</option><option value="Benin">Benin</option><option value="Bhutan">Bhutan</option><option value="Bolivia">Bolivia</option><option value="Bosnia and Herzegovina">Bosnia and Herzegovina</option><option value="Botswana">Botswana</option><option value="Brazil">Brazil</option><option value="Brunei">Brunei</option><option value="Bulgaria">Bulgaria</option><option value="Burkina Faso">Burkina Faso</option><option value="Burundi">Burundi</option><option value="Cambodia">Cambodia</option><option value="Cameroon">Cameroon</option><option value="Canada">Canada</option><option value="Cape Verde">Cape Verde</option><option value="Central African Republic">Central African Republic</option><option value="Chad">Chad</option><option value="Chile">Chile</option><option value="China">China</option><option value="Colombi">Colombi</option><option value="Comoros">Comoros</option><option value="Congo (Brazzaville)">Congo (Brazzaville)</option><option value="Congo">Congo</option><option value="Costa Rica">Costa Rica</option><option value="Cote d''Ivoire">Cote d''Ivoire</option><option value="Croatia">Croatia</option><option value="Cuba">Cuba</option><option value="Cyprus">Cyprus</option><option value="Czech Republic">Czech Republic</option><option value="Denmark">Denmark</option><option value="Djibouti">Djibouti</option><option value="Dominica">Dominica</option><option value="Dominican Republic">Dominican Republic</option><option value="East Timor (Timor Timur)">East Timor (Timor Timur)</option><option value="Ecuador">Ecuador</option><option value="Egypt">Egypt</option><option value="El Salvador">El Salvador</option><option value="Equatorial Guinea">Equatorial Guinea</option><option value="Eritrea">Eritrea</option><option value="Estonia">Estonia</option><option value="Ethiopia">Ethiopia</option><option value="Fiji">Fiji</option><option value="Finland">Finland</option><option value="France">France</option><option value="Gabon">Gabon</option><option value="Gambia, The">Gambia, The</option><option value="Georgia">Georgia</option><option value="Germany">Germany</option><option value="Ghana">Ghana</option><option value="Greece">Greece</option><option value="Grenada">Grenada</option><option value="Guatemala">Guatemala</option><option value="Guinea">Guinea</option><option value="Guinea-Bissau">Guinea-Bissau</option><option value="Guyana">Guyana</option><option value="Haiti">Haiti</option><option value="Honduras">Honduras</option><option value="Hungary">Hungary</option><option value="Iceland">Iceland</option><option value="India">India</option><option value="Indonesia">Indonesia</option><option value="Iran">Iran</option><option value="Iraq">Iraq</option><option value="Ireland">Ireland</option><option value="Israel">Israel</option><option value="Italy">Italy</option><option value="Jamaica">Jamaica</option><option value="Japan">Japan</option><option value="Jordan">Jordan</option><option value="Kazakhstan">Kazakhstan</option><option value="Kenya">Kenya</option><option value="Kiribati">Kiribati</option><option value="Korea, North">Korea, North</option><option value="Korea, South">Korea, South</option><option value="Kuwait">Kuwait</option><option value="Kyrgyzstan">Kyrgyzstan</option><option value="Laos">Laos</option><option value="Latvia">Latvia</option><option value="Lebanon">Lebanon</option><option value="Lesotho">Lesotho</option><option value="Liberia">Liberia</option><option value="Libya">Libya</option><option value="Liechtenstein">Liechtenstein</option><option value="Lithuania">Lithuania</option><option value="Luxembourg">Luxembourg</option><option value="Macedonia">Macedonia</option><option value="Madagascar">Madagascar</option><option value="Malawi">Malawi</option><option value="Malaysia">Malaysia</option><option value="Maldives">Maldives</option><option value="Mali">Mali</option><option value="Malta">Malta</option><option value="Marshall Islands">Marshall Islands</option><option value="Mauritania">Mauritania</option><option value="Mauritius">Mauritius</option><option value="Mexico">Mexico</option><option value="Micronesia">Micronesia</option><option value="Moldova">Moldova</option><option value="Monaco">Monaco</option><option value="Mongolia">Mongolia</option><option value="Morocco">Morocco</option><option value="Mozambique">Mozambique</option><option value="Myanmar">Myanmar</option><option value="Namibia">Namibia</option><option value="Nauru">Nauru</option><option value="Nepa">Nepa</option><option value="Netherlands">Netherlands</option><option value="New Zealand">New Zealand</option><option value="Nicaragua">Nicaragua</option><option value="Niger">Niger</option><option value="Nigeria">Nigeria</option><option value="Norway">Norway</option><option value="Oman">Oman</option><option value="Pakistan">Pakistan</option><option value="Palau">Palau</option><option value="Panama">Panama</option><option value="Papua New Guinea">Papua New Guinea</option><option value="Paraguay">Paraguay</option><option value="Peru">Peru</option><option value="Philippines">Philippines</option><option value="Poland">Poland</option><option value="Portugal">Portugal</option><option value="Qatar">Qatar</option><option value="Romania">Romania</option><option value="Russia">Russia</option><option value="Rwanda">Rwanda</option><option value="Saint Kitts and Nevis">Saint Kitts and Nevis</option><option value="Saint Lucia">Saint Lucia</option><option value="Saint Vincent">Saint Vincent</option><option value="Samoa">Samoa</option><option value="San Marino">San Marino</option><option value="Sao Tome and Principe">Sao Tome and Principe</option><option value="Saudi Arabia">Saudi Arabia</option><option value="Senegal">Senegal</option><option value="Serbia and Montenegro">Serbia and Montenegro</option><option value="Seychelles">Seychelles</option><option value="Sierra Leone">Sierra Leone</option><option value="Singapore">Singapore</option><option value="Slovakia">Slovakia</option><option value="Slovenia">Slovenia</option><option value="Solomon Islands">Solomon Islands</option><option value="Somalia">Somalia</option><option value="South Africa">South Africa</option><option value="Spain">Spain</option><option value="Sri Lanka">Sri Lanka</option><option value="Sudan">Sudan</option><option value="Suriname">Suriname</option><option value="Swaziland">Swaziland</option><option value="Sweden">Sweden</option><option value="Switzerland">Switzerland</option><option value="Syria">Syria</option><option value="Taiwan">Taiwan</option><option value="Tajikistan">Tajikistan</option><option value="Tanzania">Tanzania</option><option value="Thailand">Thailand</option><option value="Togo">Togo</option><option value="Tonga">Tonga</option><option value="Trinidad and Tobago">Trinidad and Tobago</option><option value="Tunisia">Tunisia</option><option value="Turkey">Turkey</option><option value="Turkmenistan">Turkmenistan</option><option value="Tuvalu">Tuvalu</option><option value="Uganda">Uganda</option><option value="Ukraine">Ukraine</option><option value="United Arab Emirates">United Arab Emirates</option><option value="United Kingdom">United Kingdom</option><option value="United States">United States</option><option value="Uruguay">Uruguay</option><option value="Uzbekistan">Uzbekistan</option><option value="Vanuatu">Vanuatu</option><option value="Vatican City">Vatican City</option><option value="Venezuela">Venezuela</option><option value="Vietnam">Vietnam</option><option value="Yemen">Yemen</option><option value="Zambia">Zambia</option><option value="Zimbabwe">Zimbabwe</option></select><label class="mini_label" id="14_mini_label_country" style="display: block;">Country</label></span></div></td></tr></tbody></table></td></tr><tr id="20" type="type_radio"><td colspan="2" id="20_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="20_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="20_label_sectionform_id_temp" class=""><span id="20_element_labelform_id_temp" class="label">Registration Package</span><span id="20_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="20_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="20_typeform_id_temp" id="20_typeform_id_temp"><input type="hidden" value="no" name="20_requiredform_id_temp" id="20_requiredform_id_temp"><input type="hidden" value="no" name="20_randomizeform_id_temp" id="20_randomizeform_id_temp"><input type="hidden" value="no" name="20_allow_otherform_id_temp" id="20_allow_otherform_id_temp"><input type="hidden" value="1" name="20_rowcol_numform_id_temp" id="20_rowcol_numform_id_temp"><table><tbody id="20_table_little"><tr id="20_element_tr0"><td valign="top" id="20_td_little0" idi="0"><input type="radio" value="Standard Registration ($50 USD)" id="20_elementform_id_temp0" name="20_elementform_id_temp" onclick="set_default(''20'',''0'',''form_id_temp'')"><label id="20_label_element0" class="ch_rad_label" for="20_elementform_id_temp0">Standard Registration ($50 USD)</label></td></tr><tr id="20_element_tr1"><td valign="top" id="20_td_little1" idi="1"><input type="radio" value="Premium Registration ($90 USD)" id="20_elementform_id_temp1" name="20_elementform_id_temp" onclick="set_default(''20'',''1'',''form_id_temp'')"><label id="20_label_element1" class="ch_rad_label" for="20_elementform_id_temp1">Premium Registration ($90 USD)</label></td></tr><tr id="20_element_tr2"><td valign="top" id="20_td_little2" idi="2"><input type="radio" value="Corporate Registration ($200 USD)" id="20_elementform_id_temp2" name="20_elementform_id_temp" onclick="set_default(''20'',''2'',''form_id_temp'')"><label id="20_label_element2" class="ch_rad_label" for="20_elementform_id_temp2">Corporate Registration ($200 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="21" type="type_radio"><td colspan="2" id="21_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="21_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="21_label_sectionform_id_temp" class=""><span id="21_element_labelform_id_temp" class="label">Accommodation Package</span><span id="21_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="21_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="21_typeform_id_temp" id="21_typeform_id_temp"><input type="hidden" value="no" name="21_requiredform_id_temp" id="21_requiredform_id_temp"><input type="hidden" value="no" name="21_randomizeform_id_temp" id="21_randomizeform_id_temp"><input type="hidden" value="no" name="21_allow_otherform_id_temp" id="21_allow_otherform_id_temp"><input type="hidden" value="1" name="21_rowcol_numform_id_temp" id="21_rowcol_numform_id_temp"><table><tbody id="21_table_little"><tr id="21_element_tr0"><td valign="top" id="21_td_little0" idi="0"><input type="radio" value="None" id="21_elementform_id_temp0" name="21_elementform_id_temp" onclick="set_default(''21'',''0'',''form_id_temp'')"><label id="21_label_element0" class="ch_rad_label" for="21_elementform_id_temp0">None</label></td></tr><tr id="21_element_tr1"><td valign="top" id="21_td_little1" idi="1"><input type="radio" value="2 Days in 3 Star Hotel ($300 USD)" id="21_elementform_id_temp1" name="21_elementform_id_temp" onclick="set_default(''21'',''1'',''form_id_temp'')"><label id="21_label_element1" class="ch_rad_label" for="21_elementform_id_temp1">2 Days in 3 Star Hotel ($300 USD)</label></td></tr><tr id="21_element_tr2"><td valign="top" id="21_td_little2" idi="2"><input type="radio" value="2 Days in 4 Star Hotel ($550 USD)" id="21_elementform_id_temp2" name="21_elementform_id_temp" onclick="set_default(''21'',''2'',''form_id_temp'')"><label id="21_label_element2" class="ch_rad_label" for="21_elementform_id_temp2">2 Days in 4 Star Hotel ($550 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="11" type="type_paypal_checkbox"><td colspan="2" id="11_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="11_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="11_label_sectionform_id_temp" class=""><span id="11_element_labelform_id_temp" class="label">Additional</span><span id="11_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="11_element_sectionform_id_temp" class=""><input type="hidden" value="type_paypal_checkbox" name="11_typeform_id_temp" id="11_typeform_id_temp"><input type="hidden" value="no" name="11_requiredform_id_temp" id="11_requiredform_id_temp"><input type="hidden" value="no" name="11_randomizeform_id_temp" id="11_randomizeform_id_temp"><input type="hidden" value="no" name="11_allow_otherform_id_temp" id="11_allow_otherform_id_temp"><input type="hidden" value="0" name="11_allow_other_numform_id_temp" id="11_allow_other_numform_id_temp"><table><tbody id="11_table_little"><tr id="11_element_tr0"><td valign="top" id="11_td_little0" idi="0"><input type="checkbox" id="11_elementform_id_temp0" name="11_elementform_id_temp0" value="10" onclick="set_checked(''11'',''0'',''form_id_temp'')"><label id="11_label_element0" class="ch_rad_label" for="11_elementform_id_temp0">I''m also buying the t-shirt of the event ($10 USD)</label><input type="hidden" id="11_elementlabel_form_id_temp0" name="11_elementform_id_temp0_label" value="I''m also buying the t-shirt of the event ($10 USD)"></td></tr></tbody></table><div id="11_divform_id_temp"></div></td></tr></tbody></table></td></tr><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');">Reset</button></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody></table>', 24, '// before form is load\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// before form submit\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// before form reset\r\nfunction before_reset()\r\n{\r\n\r\n}', '', '', 1, '<p>%all%</p>', '<p>%all%</p>', 22, '13#**id**#Name#**label**#type_name#****#2#**id**#E-mail#**label**#type_submitter_mail#****#14#**id**#Street Address#**label**#type_address#****#15#**id**#Street Address Line 2#**label**#type_address#****#16#**id**#City#**label**#type_address#****#17#**id**#State / Province / Region#**label**#type_address#****#18#**id**#Postal / Zip Code#**label**#type_address#****#19#**id**#Country#**label**#type_address#****#20#**id**#Registration Package#**label**#type_radio#****#21#**id**#Accommodation Package#**label**#type_radio#****#11#**id**#Additional#**label**#type_paypal_checkbox#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#1#**id**#Name#**label**#type_name#****#3#**id**#Street Line#**label**#type_address#****#4#**id**#Street Line2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State#**label**#type_address#****#7#**id**#Postal#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Registration Package#**label**#type_paypal_radio#****#10#**id**#Accommodation Package#**label**#type_paypal_radio#****#', '13#**id**#Name#**label**#type_name#****#2#**id**#E-mail#**label**#type_submitter_mail#****#14#**id**#Street Address#**label**#type_address#****#15#**id**#Street Address Line 2#**label**#type_address#****#16#**id**#City#**label**#type_address#****#17#**id**#State / Province / Region#**label**#type_address#****#18#**id**#Postal / Zip Code#**label**#type_address#****#19#**id**#Country#**label**#type_address#****#20#**id**#Registration Package#**label**#type_radio#****#21#**id**#Accommodation Package#**label**#type_radio#****#11#**id**#Additional#**label**#type_paypal_checkbox#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#', 0, 'none', 'false', 'true', '', '', '', 0, 'testmode', '', 'USD', 0, '', '', '', '', '', '');
636
  HEREQUERYFORM;
637
  $form_maker_rows11 = <<<HEREQUERYFORM
638
  INSERT INTO `{$table_name}` (`title`, `mail`, `form`, `form_front`, `theme`, `javascript`, `submit_text`, `url`, `submit_text_type`, `script_mail`, `script_mail_user`, `counter`, `label_order`, `label_order_current`, `article_id`, `pagination`, `show_title`, `show_numbers`, `public_key`, `private_key`, `recaptcha_theme`, `paypal_mode`, `checkout_mode`, `paypal_email`, `payment_currency`, `tax`, `from_mail`, `from_name`, `script1`, `script2`, `script_user1`, `script_user2`) VALUES
639
- ('Cupcake Order Form', '', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_date"><td valign="middle" align="left" id="1_label_sectionform_id_temp" class=""><span id="1_element_labelform_id_temp" class="label">Choose your date for pick up:</span><span id="1_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="1_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_date" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="text" value="" class="wdform_date" id="1_elementform_id_temp" name="1_elementform_id_temp" maxlength="10" size="10" onchange="change_value(''1_elementform_id_temp'')"><input id="1_buttonform_id_temp" class="button" type="reset" value="..." format="%Y-%m-%d" onclick="return showCalendar(''1_elementform_id_temp'' ,''%Y-%m-%d'')"></td><td id="X_1" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="16" type="type_time"><td valign="top" align="left" id="16_label_sectionform_id_temp" class=""><span id="16_element_labelform_id_temp" class="label">Time:</span><span id="16_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="16_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_time" name="16_typeform_id_temp" id="16_typeform_id_temp"><input type="hidden" value="no" name="16_requiredform_id_temp" id="16_requiredform_id_temp"><table id="16_table_time" cellpadding="0" cellspacing="0"><tbody><tr id="16_tr_time1"><td id="16_td_time_input1" style="width: 32px;"><input type="text" value="" class="time_box" id="16_hhform_id_temp" name="16_hhform_id_temp" onkeypress="return check_hour(event, ''16_hhform_id_temp'', ''23'')" onkeyup="change_hour(event, ''16_hhform_id_temp'',''23'')" onblur="add_0(''16_hhform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input2" style="width: 32px;"><input type="text" value="" class="time_box" id="16_mmform_id_temp" name="16_mmform_id_temp" onkeypress="return check_minute(event, ''16_mmform_id_temp'')" onkeyup="change_minute(event, ''16_mmform_id_temp'')" onblur="add_0(''16_mmform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input3" style="width: 32px;"><input type="text" value="" class="time_box" id="16_ssform_id_temp" name="16_ssform_id_temp" onkeypress="return check_second(event, ''16_ssform_id_temp'')" onkeyup="change_second(event, ''16_ssform_id_temp'')" onblur="add_0(''16_ssform_id_temp'')"></td></tr><tr id="16_tr_time2"><td id="16_td_time_label1"><label class="mini_label" id="16_mini_label_hh">HH</label></td><td></td><td id="16_td_time_label2"><label class="mini_label" id="16_mini_label_mm">MM</label></td><td></td><td id="16_td_time_label3"><label class="mini_label" id="16_mini_label_ss">SS</label></td></tr></tbody></table></td><td id="X_16" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="13" type="type_name"><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Full Name:</span><span id="13_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="13_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 100px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 100px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td><td id="X_13" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="5" type="type_submitter_mail"><td valign="middle" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">E-mail:</span><span id="5_required_elementform_id_temp" class="required"> *</span></td><td valign="middle" align="left" id="5_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_submitter_mail" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="yes" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_sendform_id_temp" id="5_sendform_id_temp"><input type="hidden" value="" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><input type="text" class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" value="ex: myname@example.com" title="ex: myname@example.com" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 200px;"></td><td id="X_5" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="14" type="type_phone"><td valign="top" align="left" id="14_label_sectionform_id_temp" class=""><span id="14_element_labelform_id_temp" class="label">Mobile/Phone Number:</span><span id="14_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="14_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_phone" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" value="" name="14_uniqueform_id_temp" id="14_uniqueform_id_temp"><table id="14_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="14_tr_name1"><td id="14_td_name_input_first"><input type="text" class="input_deactive" id="14_element_firstform_id_temp" name="14_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_firstform_id_temp&quot;)" onblur="return_value(&quot;14_element_firstform_id_temp&quot;)" onchange="change_value(''14_element_firstform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 50px;"><span class="wdform_line" style="margin: 0px 4px; padding: 0px;">-</span></td><td id="14_td_name_input_last"><input type="text" class="input_deactive" id="14_element_lastform_id_temp" name="14_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_lastform_id_temp&quot;)" onblur="return_value(&quot;14_element_lastform_id_temp&quot;)" onchange="change_value(''14_element_lastform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 135px;"></td></tr><tr id="14_tr_name2"><td id="14_td_name_label_first" align="left"><label class="mini_label" id="14_mini_label_area_code">Area Code</label></td><td id="14_td_name_label_last" align="left"><label class="mini_label" id="14_mini_label_phone_number">Phone Number</label></td></tr></tbody></table></td><td id="X_14" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="7" type="type_paypal_checkbox"><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">Cupcakes Flavors (1 doz. minimum)</span><span id="7_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="7_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_checkbox" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="yes" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="no" name="7_randomizeform_id_temp" id="7_randomizeform_id_temp"><input type="hidden" value="no" name="7_allow_otherform_id_temp" id="7_allow_otherform_id_temp"><input type="hidden" value="0" name="7_allow_other_numform_id_temp" id="7_allow_other_numform_id_temp"><table><tbody id="7_table_little"><tr id="7_element_tr0"><td valign="top" id="7_td_little0" idi="0"><input type="checkbox" id="7_elementform_id_temp0" name="7_elementform_id_temp0" value="15" onclick="set_checked(''7'',''0'',''form_id_temp'')"><label id="7_label_element0" class="ch_rad_label" for="7_elementform_id_temp0">Red Velvet ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp0" name="7_elementform_id_temp0_label" value="Red Velvet ($15.00)"></td></tr><tr id="7_element_tr1"><td valign="top" id="7_td_little1" idi="1"><input type="checkbox" id="7_elementform_id_temp1" name="7_elementform_id_temp1" value="10" onclick="set_checked(''7'',''1'',''form_id_temp'')"><label id="7_label_element1" class="ch_rad_label" for="7_elementform_id_temp1">Vanilla ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp1" name="7_elementform_id_temp1_label" value="Vanilla ($10.00)"></td></tr><tr id="7_element_tr2"><td valign="top" id="7_td_little2" idi="2"><input type="checkbox" id="7_elementform_id_temp2" name="7_elementform_id_temp2" value="12" onclick="set_checked(''7'',''2'',''form_id_temp'')"><label id="7_label_element2" class="ch_rad_label" for="7_elementform_id_temp2">Chocolate ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp2" name="7_elementform_id_temp2_label" value="Chocolate ($12.00)"></td></tr><tr id="7_element_tr3"><td valign="top" id="7_td_little3" idi="3"><input type="checkbox" id="7_elementform_id_temp3" name="7_elementform_id_temp3" value="15" onclick="set_checked(''7'',''3'',''form_id_temp'')"><label id="7_label_element3" class="ch_rad_label" for="7_elementform_id_temp3">Guinness ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp3" name="7_elementform_id_temp3_label" value="Guinness ($15.00)"></td></tr><tr id="7_element_tr4"><td valign="top" id="7_td_little4" idi="4"><input type="checkbox" id="7_elementform_id_temp4" name="7_elementform_id_temp4" value="12" onclick="set_checked(''7'',''4'',''form_id_temp'')"><label id="7_label_element4" class="ch_rad_label" for="7_elementform_id_temp4">Coconut ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp4" name="7_elementform_id_temp4_label" value="Coconut ($12.00)"></td></tr><tr id="7_element_tr5"><td valign="top" id="7_td_little5" idi="5"><input type="checkbox" id="7_elementform_id_temp5" name="7_elementform_id_temp5" value="10" onclick="set_checked(''7'',''5'',''form_id_temp'')"><label id="7_label_element5" class="ch_rad_label" for="7_elementform_id_temp5">Lemon ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp5" name="7_elementform_id_temp5_label" value="Lemon ($10.00)"></td></tr><tr id="7_element_tr6"><td valign="top" id="7_td_little6" idi="6"><input type="checkbox" id="7_elementform_id_temp6" name="7_elementform_id_temp6" value="120" onclick="set_checked(''7'',''6'',''form_id_temp'')"><label id="7_label_element6" class="ch_rad_label" for="7_elementform_id_temp6">Chocolate Mint ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp6" name="7_elementform_id_temp6_label" value="Chocolate Mint ($12.00)"></td></tr></tbody></table><div id="7_divform_id_temp"><span id="7_element_quantity_spanform_id_temp" style="margin-right: 15px;"><label class="mini_label" id="7_element_quantity_label_form_id_temp" style="margin-right: 5px;"><!--repstart-->Quantity<!--repend--></label><input type="text" value="1" id="7_element_quantityform_id_temp" name="7_element_quantityform_id_temp" onkeypress="return check_isnum(event)" onchange="change_value(''7_element_quantityform_id_temp'', this.value)" style="width: 30px; margin: 2px 0px;"></span><span id="7_property_0" style="margin-right: 15px;"><label class="mini_label" id="7_property_label_form_id_temp0" style="margin-right: 5px;">Cupcake Size</label><select id="7_propertyform_id_temp0" name="7_propertyform_id_temp0" type="null" style="width: auto; margin: 2px 0px;"><option id="7_0_option0" value="Regular(yield - 12 cupcakes)">Regular(yield - 12 cupcakes)</option><option id="7_0_option1" value="Small (yield - 24 cupcakes)">Small (yield - 24 cupcakes)</option><option id="7_0_option2" value="Mini (yield - 48 cupcakes)">Mini (yield - 48 cupcakes)</option></select></span></div></td><td id="X_7" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="8" type="type_paypal_radio"><td valign="top" align="left" id="8_label_sectionform_id_temp" class=""><span id="8_element_labelform_id_temp" class="label">Choose your butter cream frosting:</span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_radio" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="no" name="8_randomizeform_id_temp" id="8_randomizeform_id_temp"><input type="hidden" value="no" name="8_allow_otherform_id_temp" id="8_allow_otherform_id_temp"><table><tbody id="8_table_little"><tr id="8_element_tr0"><td valign="top" id="8_td_little0" idi="0"><input type="radio" id="8_elementform_id_temp0" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''0'',''form_id_temp'')"><label id="8_label_element0" class="ch_rad_label" for="8_elementform_id_temp0">Vanilla</label><input type="hidden" id="8_elementlabel_form_id_temp0" name="8_elementform_id_temp0_label" value="Vanilla"></td></tr><tr id="8_element_tr1"><td valign="top" id="8_td_little1" idi="1"><input type="radio" id="8_elementform_id_temp1" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''1'',''form_id_temp'')"><label id="8_label_element1" class="ch_rad_label" for="8_elementform_id_temp1">Chocolate</label><input type="hidden" id="8_elementlabel_form_id_temp1" name="8_elementform_id_temp1_label" value="Chocolate"></td></tr><tr id="8_element_tr2"><td valign="top" id="8_td_little2" idi="2"><input type="radio" id="8_elementform_id_temp2" name="8_elementform_id_temp" value="3" onclick="set_default(''8'',''2'',''form_id_temp'')"><label id="8_label_element2" class="ch_rad_label" for="8_elementform_id_temp2">Cream Cheese - add $3.00</label><input type="hidden" id="8_elementlabel_form_id_temp2" name="8_elementform_id_temp2_label" value="Cream Cheese - add $3.00"></td></tr><tr id="8_element_tr3"><td valign="top" id="8_td_little3" idi="3"><input type="radio" id="8_elementform_id_temp3" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''3'',''form_id_temp'')"><label id="8_label_element3" class="ch_rad_label" for="8_elementform_id_temp3">Salted Caramel</label><input type="hidden" id="8_elementlabel_form_id_temp3" name="8_elementform_id_temp3_label" value="Salted Caramel"></td></tr><tr id="8_element_tr4"><td valign="top" id="8_td_little4" idi="4"><input type="radio" id="8_elementform_id_temp4" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''4'',''form_id_temp'')"><label id="8_label_element4" class="ch_rad_label" for="8_elementform_id_temp4">Guinness</label><input type="hidden" id="8_elementlabel_form_id_temp4" name="8_elementform_id_temp4_label" value="Guinness"></td></tr><tr id="8_element_tr5"><td valign="top" id="8_td_little5" idi="5"><input type="radio" id="8_elementform_id_temp5" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''5'',''form_id_temp'')"><label id="8_label_element5" class="ch_rad_label" for="8_elementform_id_temp5">Almond</label><input type="hidden" id="8_elementlabel_form_id_temp5" name="8_elementform_id_temp5_label" value="Almond"></td></tr><tr id="8_element_tr6"><td valign="top" id="8_td_little6" idi="6"><input type="radio" id="8_elementform_id_temp6" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''6'',''form_id_temp'')"><label id="8_label_element6" class="ch_rad_label" for="8_elementform_id_temp6">Coconut</label><input type="hidden" id="8_elementlabel_form_id_temp6" name="8_elementform_id_temp6_label" value="Coconut"></td></tr></tbody></table><div id="8_divform_id_temp"></div></td><td id="X_8" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="9" type="type_textarea"><td valign="top" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">Details (if any):</span><span id="9_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="9_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_textarea" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><textarea class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" title="for example: pink frosting with silver pearls" value="for example: pink frosting with silver pearls" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px; height: 100px;">for example: pink frosting with silver pearls</textarea></td><td id="X_9" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="10" type="type_file_upload"><td colspan="2" id="10_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class=""><span id="10_element_labelform_id_temp" class="label">Upload an image of cupcakes you like so that I can have an idea of what you want. </span><span id="10_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_file_upload" name="10_typeform_id_temp" id="10_typeform_id_temp"><input type="hidden" value="no" name="10_requiredform_id_temp" id="10_requiredform_id_temp"><input type="hidden" value="***max_sizeskizb10***2000***max_sizeverj10***" id="10_max_size" name="10_max_size"><input type="hidden" value="***destinationskizb10***{$plugin_path}/uploads***destinationverj10***" id="10_destination" name="10_destination"><input type="hidden" value="***extensionskizb10***jpg, jpeg, png, gif***extensionverj10***" id="10_extension" name="10_extension"><input type="file" class="file_upload" id="10_elementform_id_temp" name="10_fileform_id_temp"></td></tr></tbody></table></td><td id="X_10" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr id="11" class="wdform_tr_section_break" type="type_section_break"><td id="11_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><strong><span style="font-family: helvetica; font-size: small; color: #ff00ff;" data-mce-style="font-family: helvetica; font-size: small; color: #ff00ff;"><em>Your order total and order number will be communicated via email. Orders outside of Trinidad will be cancelled.&nbsp;</em></span></strong></p><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><span style="font-family: helvetica; color: #000000; font-size: small;" data-mce-style="font-family: helvetica; color: #000000; font-size: small;"><strong>Themed orders will incur an additional cost...</strong></span></p></td><td id="X_11" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_section_break(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="edit_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"><span id="11_element_labelform_id_temp" style="display: none;">custom_11</span></td><td id="dublicate_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td><td id="X_12" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img1" style="float:right ;"><tr><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_2" onclick="show_or_hide(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table>', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_date"><td valign="middle" align="left" id="1_label_sectionform_id_temp" class=""><span id="1_element_labelform_id_temp" class="label">Choose your date for pick up:</span><span id="1_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="1_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_date" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="text" value="" class="wdform_date" id="1_elementform_id_temp" name="1_elementform_id_temp" maxlength="10" size="10" onchange="change_value(''1_elementform_id_temp'')"><input id="1_buttonform_id_temp" class="button" type="reset" value="..." format="%Y-%m-%d" onclick="return showCalendar(''1_elementform_id_temp'' ,''%Y-%m-%d'')"></td></tr><tr id="16" type="type_time"><td valign="top" align="left" id="16_label_sectionform_id_temp" class=""><span id="16_element_labelform_id_temp" class="label">Time:</span><span id="16_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="16_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_time" name="16_typeform_id_temp" id="16_typeform_id_temp"><input type="hidden" value="no" name="16_requiredform_id_temp" id="16_requiredform_id_temp"><table id="16_table_time" cellpadding="0" cellspacing="0"><tbody><tr id="16_tr_time1"><td id="16_td_time_input1" style="width: 32px;"><input type="text" value="" class="time_box" id="16_hhform_id_temp" name="16_hhform_id_temp" onkeypress="return check_hour(event, ''16_hhform_id_temp'', ''23'')" onkeyup="change_hour(event, ''16_hhform_id_temp'',''23'')" onblur="add_0(''16_hhform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input2" style="width: 32px;"><input type="text" value="" class="time_box" id="16_mmform_id_temp" name="16_mmform_id_temp" onkeypress="return check_minute(event, ''16_mmform_id_temp'')" onkeyup="change_minute(event, ''16_mmform_id_temp'')" onblur="add_0(''16_mmform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input3" style="width: 32px;"><input type="text" value="" class="time_box" id="16_ssform_id_temp" name="16_ssform_id_temp" onkeypress="return check_second(event, ''16_ssform_id_temp'')" onkeyup="change_second(event, ''16_ssform_id_temp'')" onblur="add_0(''16_ssform_id_temp'')"></td></tr><tr id="16_tr_time2"><td id="16_td_time_label1"><label class="mini_label" id="16_mini_label_hh">HH</label></td><td></td><td id="16_td_time_label2"><label class="mini_label" id="16_mini_label_mm">MM</label></td><td></td><td id="16_td_time_label3"><label class="mini_label" id="16_mini_label_ss">SS</label></td></tr></tbody></table></td></tr><tr id="13" type="type_name"><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Full Name:</span><span id="13_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="13_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 100px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 100px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td></tr><tr id="5" type="type_submitter_mail"><td valign="middle" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">E-mail:</span><span id="5_required_elementform_id_temp" class="required"> *</span></td><td valign="middle" align="left" id="5_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_submitter_mail" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="yes" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_sendform_id_temp" id="5_sendform_id_temp"><input type="hidden" value="" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><input type="text" class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" value="ex: myname@example.com" title="ex: myname@example.com" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 200px;"></td></tr><tr id="14" type="type_phone"><td valign="top" align="left" id="14_label_sectionform_id_temp" class=""><span id="14_element_labelform_id_temp" class="label">Mobile/Phone Number:</span><span id="14_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="14_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_phone" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" value="" name="14_uniqueform_id_temp" id="14_uniqueform_id_temp"><table id="14_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="14_tr_name1"><td id="14_td_name_input_first"><input type="text" class="input_deactive" id="14_element_firstform_id_temp" name="14_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_firstform_id_temp&quot;)" onblur="return_value(&quot;14_element_firstform_id_temp&quot;)" onchange="change_value(''14_element_firstform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 50px;"><span class="wdform_line" style="margin: 0px 4px; padding: 0px;">-</span></td><td id="14_td_name_input_last"><input type="text" class="input_deactive" id="14_element_lastform_id_temp" name="14_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_lastform_id_temp&quot;)" onblur="return_value(&quot;14_element_lastform_id_temp&quot;)" onchange="change_value(''14_element_lastform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 135px;"></td></tr><tr id="14_tr_name2"><td id="14_td_name_label_first" align="left"><label class="mini_label" id="14_mini_label_area_code">Area Code</label></td><td id="14_td_name_label_last" align="left"><label class="mini_label" id="14_mini_label_phone_number">Phone Number</label></td></tr></tbody></table></td></tr><tr id="7" type="type_paypal_checkbox"><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">Cupcakes Flavors (1 doz. minimum)</span><span id="7_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="7_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_checkbox" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="yes" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="no" name="7_randomizeform_id_temp" id="7_randomizeform_id_temp"><input type="hidden" value="no" name="7_allow_otherform_id_temp" id="7_allow_otherform_id_temp"><input type="hidden" value="0" name="7_allow_other_numform_id_temp" id="7_allow_other_numform_id_temp"><table><tbody id="7_table_little"><tr id="7_element_tr0"><td valign="top" id="7_td_little0" idi="0"><input type="checkbox" id="7_elementform_id_temp0" name="7_elementform_id_temp0" value="15" onclick="set_checked(''7'',''0'',''form_id_temp'')"><label id="7_label_element0" class="ch_rad_label" for="7_elementform_id_temp0">Red Velvet ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp0" name="7_elementform_id_temp0_label" value="Red Velvet ($15.00)"></td></tr><tr id="7_element_tr1"><td valign="top" id="7_td_little1" idi="1"><input type="checkbox" id="7_elementform_id_temp1" name="7_elementform_id_temp1" value="10" onclick="set_checked(''7'',''1'',''form_id_temp'')"><label id="7_label_element1" class="ch_rad_label" for="7_elementform_id_temp1">Vanilla ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp1" name="7_elementform_id_temp1_label" value="Vanilla ($10.00)"></td></tr><tr id="7_element_tr2"><td valign="top" id="7_td_little2" idi="2"><input type="checkbox" id="7_elementform_id_temp2" name="7_elementform_id_temp2" value="12" onclick="set_checked(''7'',''2'',''form_id_temp'')"><label id="7_label_element2" class="ch_rad_label" for="7_elementform_id_temp2">Chocolate ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp2" name="7_elementform_id_temp2_label" value="Chocolate ($12.00)"></td></tr><tr id="7_element_tr3"><td valign="top" id="7_td_little3" idi="3"><input type="checkbox" id="7_elementform_id_temp3" name="7_elementform_id_temp3" value="15" onclick="set_checked(''7'',''3'',''form_id_temp'')"><label id="7_label_element3" class="ch_rad_label" for="7_elementform_id_temp3">Guinness ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp3" name="7_elementform_id_temp3_label" value="Guinness ($15.00)"></td></tr><tr id="7_element_tr4"><td valign="top" id="7_td_little4" idi="4"><input type="checkbox" id="7_elementform_id_temp4" name="7_elementform_id_temp4" value="12" onclick="set_checked(''7'',''4'',''form_id_temp'')"><label id="7_label_element4" class="ch_rad_label" for="7_elementform_id_temp4">Coconut ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp4" name="7_elementform_id_temp4_label" value="Coconut ($12.00)"></td></tr><tr id="7_element_tr5"><td valign="top" id="7_td_little5" idi="5"><input type="checkbox" id="7_elementform_id_temp5" name="7_elementform_id_temp5" value="10" onclick="set_checked(''7'',''5'',''form_id_temp'')"><label id="7_label_element5" class="ch_rad_label" for="7_elementform_id_temp5">Lemon ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp5" name="7_elementform_id_temp5_label" value="Lemon ($10.00)"></td></tr><tr id="7_element_tr6"><td valign="top" id="7_td_little6" idi="6"><input type="checkbox" id="7_elementform_id_temp6" name="7_elementform_id_temp6" value="120" onclick="set_checked(''7'',''6'',''form_id_temp'')"><label id="7_label_element6" class="ch_rad_label" for="7_elementform_id_temp6">Chocolate Mint ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp6" name="7_elementform_id_temp6_label" value="Chocolate Mint ($12.00)"></td></tr></tbody></table><div id="7_divform_id_temp"><span id="7_element_quantity_spanform_id_temp" style="margin-right: 15px;"><label class="mini_label" id="7_element_quantity_label_form_id_temp" style="margin-right: 5px;"><!--repstart-->Quantity<!--repend--></label><input type="text" value="1" id="7_element_quantityform_id_temp" name="7_element_quantityform_id_temp" onkeypress="return check_isnum(event)" onchange="change_value(''7_element_quantityform_id_temp'', this.value)" style="width: 30px; margin: 2px 0px;"></span><span id="7_property_0" style="margin-right: 15px;"><label class="mini_label" id="7_property_label_form_id_temp0" style="margin-right: 5px;">Cupcake Size</label><select id="7_propertyform_id_temp0" name="7_propertyform_id_temp0" type="null" style="width: auto; margin: 2px 0px;"><option id="7_0_option0" value="Regular(yield - 12 cupcakes)">Regular(yield - 12 cupcakes)</option><option id="7_0_option1" value="Small (yield - 24 cupcakes)">Small (yield - 24 cupcakes)</option><option id="7_0_option2" value="Mini (yield - 48 cupcakes)">Mini (yield - 48 cupcakes)</option></select></span></div></td></tr><tr id="8" type="type_paypal_radio"><td valign="top" align="left" id="8_label_sectionform_id_temp" class=""><span id="8_element_labelform_id_temp" class="label">Choose your butter cream frosting:</span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_radio" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="no" name="8_randomizeform_id_temp" id="8_randomizeform_id_temp"><input type="hidden" value="no" name="8_allow_otherform_id_temp" id="8_allow_otherform_id_temp"><table><tbody id="8_table_little"><tr id="8_element_tr0"><td valign="top" id="8_td_little0" idi="0"><input type="radio" id="8_elementform_id_temp0" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''0'',''form_id_temp'')"><label id="8_label_element0" class="ch_rad_label" for="8_elementform_id_temp0">Vanilla</label><input type="hidden" id="8_elementlabel_form_id_temp0" name="8_elementform_id_temp0_label" value="Vanilla"></td></tr><tr id="8_element_tr1"><td valign="top" id="8_td_little1" idi="1"><input type="radio" id="8_elementform_id_temp1" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''1'',''form_id_temp'')"><label id="8_label_element1" class="ch_rad_label" for="8_elementform_id_temp1">Chocolate</label><input type="hidden" id="8_elementlabel_form_id_temp1" name="8_elementform_id_temp1_label" value="Chocolate"></td></tr><tr id="8_element_tr2"><td valign="top" id="8_td_little2" idi="2"><input type="radio" id="8_elementform_id_temp2" name="8_elementform_id_temp" value="3" onclick="set_default(''8'',''2'',''form_id_temp'')"><label id="8_label_element2" class="ch_rad_label" for="8_elementform_id_temp2">Cream Cheese - add $3.00</label><input type="hidden" id="8_elementlabel_form_id_temp2" name="8_elementform_id_temp2_label" value="Cream Cheese - add $3.00"></td></tr><tr id="8_element_tr3"><td valign="top" id="8_td_little3" idi="3"><input type="radio" id="8_elementform_id_temp3" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''3'',''form_id_temp'')"><label id="8_label_element3" class="ch_rad_label" for="8_elementform_id_temp3">Salted Caramel</label><input type="hidden" id="8_elementlabel_form_id_temp3" name="8_elementform_id_temp3_label" value="Salted Caramel"></td></tr><tr id="8_element_tr4"><td valign="top" id="8_td_little4" idi="4"><input type="radio" id="8_elementform_id_temp4" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''4'',''form_id_temp'')"><label id="8_label_element4" class="ch_rad_label" for="8_elementform_id_temp4">Guinness</label><input type="hidden" id="8_elementlabel_form_id_temp4" name="8_elementform_id_temp4_label" value="Guinness"></td></tr><tr id="8_element_tr5"><td valign="top" id="8_td_little5" idi="5"><input type="radio" id="8_elementform_id_temp5" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''5'',''form_id_temp'')"><label id="8_label_element5" class="ch_rad_label" for="8_elementform_id_temp5">Almond</label><input type="hidden" id="8_elementlabel_form_id_temp5" name="8_elementform_id_temp5_label" value="Almond"></td></tr><tr id="8_element_tr6"><td valign="top" id="8_td_little6" idi="6"><input type="radio" id="8_elementform_id_temp6" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''6'',''form_id_temp'')"><label id="8_label_element6" class="ch_rad_label" for="8_elementform_id_temp6">Coconut</label><input type="hidden" id="8_elementlabel_form_id_temp6" name="8_elementform_id_temp6_label" value="Coconut"></td></tr></tbody></table><div id="8_divform_id_temp"></div></td></tr><tr id="9" type="type_textarea"><td valign="top" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">Details (if any):</span><span id="9_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="9_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_textarea" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><textarea class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" title="for example: pink frosting with silver pearls" value="for example: pink frosting with silver pearls" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px; height: 100px;">for example: pink frosting with silver pearls</textarea></td></tr><tr id="10" type="type_file_upload"><td colspan="2" id="10_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class=""><span id="10_element_labelform_id_temp" class="label">Upload an image of cupcakes you like so that I can have an idea of what you want. </span><span id="10_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_file_upload" name="10_typeform_id_temp" id="10_typeform_id_temp"><input type="hidden" value="no" name="10_requiredform_id_temp" id="10_requiredform_id_temp"><input type="hidden" value="***max_sizeskizb10***2000***max_sizeverj10***" id="10_max_size" name="10_max_size"><input type="hidden" value="***destinationskizb10***{$plugin_path}/uploads***destinationverj10***" id="10_destination" name="10_destination"><input type="hidden" value="***extensionskizb10***jpg, jpeg, png, gif***extensionverj10***" id="10_extension" name="10_extension"><input type="file" class="file_upload" id="10_elementform_id_temp" name="10_fileform_id_temp"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="11" class="wdform_tr_section_break" type="type_section_break"><td id="11_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><strong><span style="font-family: helvetica; font-size: small; color: #ff00ff;" data-mce-style="font-family: helvetica; font-size: small; color: #ff00ff;"><em>Your order total and order number will be communicated via email. Orders outside of Trinidad will be cancelled.&nbsp;</em></span></strong></p><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><span style="font-family: helvetica; color: #000000; font-size: small;" data-mce-style="font-family: helvetica; color: #000000; font-size: small;"><strong>Themed orders will incur an additional cost...</strong></span></p></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody></table>', 10, '// before form is load\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// before form submit\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// before form reset\r\nfunction before_reset()\r\n{\r\n\r\n}', '', '', 1, '<p>%all%</p>', '<p>%all%</p>', 21, '1#**id**#Choose your date for pick up:#**label**#type_date#****#16#**id**#Time:#**label**#type_time#****#13#**id**#Full Name:#**label**#type_name#****#5#**id**#E-mail:#**label**#type_submitter_mail#****#14#**id**#Mobile/Phone Number:#**label**#type_phone#****#7#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_paypal_checkbox#****#8#**id**#Choose your butter cream frosting:#**label**#type_paypal_radio#****#9#**id**#Details (if any):#**label**#type_textarea#****#10#**id**#Upload an image of cupcakes you like so that I can have an idea of what you want. #**label**#type_file_upload#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#20#**id**#Total:#**label**#type_paypal_total#****#19#**id**#Total:#**label**#type_paypal_total#****#17#**id**#Martix:#**label**#type_matrix#****#18#**id**#Total:#**label**#type_paypal_total#****#2#**id**#Time:#**label**#type_time#****#3#**id**#Full Name:#**label**#type_name#****#6#**id**#Mobile/Phone Number:#**label**#type_phone#****#4#**id**#Birth Date:#**label**#type_date_fields#****##**id**##**label**##****#', '1#**id**#Choose your date for pick up:#**label**#type_date#****#16#**id**#Time:#**label**#type_time#****#13#**id**#Full Name:#**label**#type_name#****#5#**id**#E-mail:#**label**#type_submitter_mail#****#14#**id**#Mobile/Phone Number:#**label**#type_phone#****#7#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_paypal_checkbox#****#8#**id**#Choose your butter cream frosting:#**label**#type_paypal_radio#****#9#**id**#Details (if any):#**label**#type_textarea#****#10#**id**#Upload an image of cupcakes you like so that I can have an idea of what you want. #**label**#type_file_upload#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#', 0, 'none', 'false', 'true', '', '', '', 0, 'testmode', '', 'USD', 0, '', '', '', '', '', '');
640
  HEREQUERYFORM;
641
  $form_maker_rows12 = <<<HEREQUERYFORM
642
  INSERT INTO `{$table_name}` (`title`, `mail`, `form`, `form_front`, `theme`, `javascript`, `submit_text`, `url`, `submit_text_type`, `script_mail`, `script_mail_user`, `counter`, `label_order`, `label_order_current`, `article_id`, `pagination`, `show_title`, `show_numbers`, `public_key`, `private_key`, `recaptcha_theme`, `paypal_mode`, `checkout_mode`, `paypal_email`, `payment_currency`, `tax`, `from_mail`, `from_name`, `script1`, `script2`, `script_user1`, `script_user2`) VALUES
643
- ('Product Survey', '', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Product Rating" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"></tbody></table></td></tr><tr id="2" class="wdform_tr_section_break" type="type_section_break"><td id="2_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><h1 class="sg-title" style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;" data-mce-style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;">Product Survey</h1></td><td id="X_2" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_section_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="edit_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"><span id="2_element_labelform_id_temp" style="display: none;">custom_2</span></td><td id="dublicate_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_matrix"><td colspan="2" id="1_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="1_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="1_label_sectionform_id_temp" class="wdform_matrix"><span id="1_element_labelform_id_temp" class="label">1. Please indicate if you agree or disagree with the following statements</span><span id="1_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="1_element_sectionform_id_temp" class="wdform_matrix"><input type="hidden" value="type_matrix" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="hidden" value="radio" name="1_input_typeform_id_temp" id="1_input_typeform_id_temp"><table id="1_elementform_id_temp"><tbody id="1_table_little"><tr id="1_element_tr0"><td id="1_element_td0_0"></td><td id="1_element_td0_1" class="matrix_" style="\r\n text-align: center;\r\n"><label id="1_label_elementform_id_temp0_1" name="1_label_elementform_id_temp0_1" class="ch_rad_label" for="1_elementform_id_temp1">Strongly Disagree</label></td><td id="1_element_td0_2" class="matrix_"><label id="1_label_elementform_id_temp0_2" name="1_label_elementform_id_temp0_2" class="ch_rad_label" for="1_elementform_id_temp2">Disagree</label></td><td id="1_element_td0_3" class="matrix_"><label id="1_label_elementform_id_temp0_3" name="1_label_elementform_id_temp0_3" class="ch_rad_label" for="1_elementform_id_temp3">Neutral</label></td><td id="1_element_td0_4" class="matrix_"><label id="1_label_elementform_id_temp0_4" name="1_label_elementform_id_temp0_4" class="ch_rad_label" for="1_elementform_id_temp4">Agree</label></td><td id="1_element_td0_5" class="matrix_"><label id="1_label_elementform_id_temp0_5" name="1_label_elementform_id_temp0_5" class="ch_rad_label" for="1_elementform_id_temp5">Strongly Agree</label></td></tr><tr id="1_element_tr1"><td id="1_element_td1_0" class="matrix_"><label id="1_label_elementform_id_temp1_0" class="ch_rad_label" for="1_elementform_id_temp1">Product is affordable</label></td><td id="1_element_td1_1" style="text-align: center;" align="center"><input id="1_input_elementform_id_temp1_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_1"></td><td id="1_element_td1_2" style="text-align: center;"><input id="1_input_elementform_id_temp1_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_2"></td><td id="1_element_td1_3" style="text-align: center;"><input id="1_input_elementform_id_temp1_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_3"></td><td id="1_element_td1_4" style="text-align: center;"><input id="1_input_elementform_id_temp1_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_4"></td><td id="1_element_td1_5" style="text-align: center;"><input id="1_input_elementform_id_temp1_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_5"></td></tr><tr id="1_element_tr2"><td id="1_element_td2_0" class="matrix_"><label id="1_label_elementform_id_temp2_0" class="ch_rad_label" for="1_elementform_id_temp2">Product is valuable</label></td><td id="1_element_td2_1" style="text-align: center;"><input id="1_input_elementform_id_temp2_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_1"></td><td id="1_element_td2_2" style="text-align: center;"><input id="1_input_elementform_id_temp2_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_2"></td><td id="1_element_td2_3" style="text-align: center;"><input id="1_input_elementform_id_temp2_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_3"></td><td id="1_element_td2_4" style="text-align: center;"><input id="1_input_elementform_id_temp2_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_4"></td><td id="1_element_td2_5" style="text-align: center;"><input id="1_input_elementform_id_temp2_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_5"></td></tr><tr id="1_element_tr3"><td id="1_element_td3_0" class="matrix_"><label id="1_label_elementform_id_temp3_0" class="ch_rad_label" for="1_elementform_id_temp3">Product is better<br> than other products on<br> the market</label></td><td id="1_element_td3_1" style="text-align: center;"><input id="1_input_elementform_id_temp3_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_1"></td><td id="1_element_td3_2" style="text-align: center;"><input id="1_input_elementform_id_temp3_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_2"></td><td id="1_element_td3_3" style="text-align: center;"><input id="1_input_elementform_id_temp3_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_3"></td><td id="1_element_td3_4" style="text-align: center;"><input id="1_input_elementform_id_temp3_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_4"></td><td id="1_element_td3_5" style="text-align: center;"><input id="1_input_elementform_id_temp3_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_5"></td></tr><tr id="1_element_tr4"><td id="1_element_td4_0" class="matrix_"><label id="1_label_elementform_id_temp4_0" class="ch_rad_label" for="1_elementform_id_temp4">Product is easy to use</label></td><td id="1_element_td4_1" style="text-align: center;"><input id="1_input_elementform_id_temp4_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_1"></td><td id="1_element_td4_2" style="text-align: center;"><input id="1_input_elementform_id_temp4_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_2"></td><td id="1_element_td4_3" style="text-align: center;"><input id="1_input_elementform_id_temp4_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_3"></td><td id="1_element_td4_4" style="text-align: center;"><input id="1_input_elementform_id_temp4_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_4"></td><td id="1_element_td4_5" style="text-align: center;"><input id="1_input_elementform_id_temp4_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_5"></td></tr></tbody></table><input id="1_hidden_rowform_id_temp" name="1_hidden_rowform_id_temp" type="hidden" value="Product is affordable***Product is valuable***Product is better&lt;br&gt; than other products on&lt;br&gt; the market***Product is easy to use***"><input id="1_row_idsform_id_temp" name="1_row_idsform_id_temp" type="hidden" value="1,2,3,4,"><input id="1_hidden_columnform_id_temp" name="1_hidden_columnform_id_temp" type="hidden" value="Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree***"><input id="1_column_idsform_id_temp" name="1_column_idsform_id_temp" type="hidden" value="1,2,3,4,5,"></td></tr></tbody></table></td><td id="X_1" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="3" type="type_scale_rating"><td colspan="2" id="3_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="3_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="3_label_sectionform_id_temp" class="wdform_scale_rating"><span id="3_element_labelform_id_temp" class="label">2. How likely are you to recommend [Product/Service] to a friend or co-worker?</span><span id="3_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="3_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="3_typeform_id_temp" id="3_typeform_id_temp"><input type="hidden" value="no" name="3_requiredform_id_temp" id="3_requiredform_id_temp"><input type="hidden" value="5" id="3_scale_amountform_id_temp" name="3_scale_amountform_id_temp"><div id="3_elementform_id_temp" style="float: left;"><label class="mini_label" id="3_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Will not recommend </label><table id="3_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="3_scale_tr1form_id_temp"><td id="3_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="3_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="3_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="3_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="3_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="3_scale_tr2form_id_temp"><td id="3_scale_td2_1form_id_temp"><input id="3_scale_radioform_id_temp_1" name="3_scale_radioform_id_temp" value="1" type="radio"></td><td id="3_scale_td2_2form_id_temp"><input id="3_scale_radioform_id_temp_2" name="3_scale_radioform_id_temp" value="2" type="radio"></td><td id="3_scale_td2_3form_id_temp"><input id="3_scale_radioform_id_temp_3" name="3_scale_radioform_id_temp" value="3" type="radio"></td><td id="3_scale_td2_4form_id_temp"><input id="3_scale_radioform_id_temp_4" name="3_scale_radioform_id_temp" value="4" type="radio"></td><td id="3_scale_td2_5form_id_temp"><input id="3_scale_radioform_id_temp_5" name="3_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="3_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> I will recommend</label></div></td></tr></tbody></table></td><td id="X_3" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="4" type="type_scale_rating"><td colspan="2" id="4_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="4_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="4_label_sectionform_id_temp" class="wdform_scale_rating"><span id="4_element_labelform_id_temp" class="label">3. How satisfied are you with this [Product/Service]?</span><span id="4_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="4_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="4_typeform_id_temp" id="4_typeform_id_temp"><input type="hidden" value="no" name="4_requiredform_id_temp" id="4_requiredform_id_temp"><input type="hidden" value="5" id="4_scale_amountform_id_temp" name="4_scale_amountform_id_temp"><div id="4_elementform_id_temp" style="float: left;"><label class="mini_label" id="4_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Not Satisfied </label><table id="4_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="4_scale_tr1form_id_temp"><td id="4_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="4_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="4_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="4_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="4_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="4_scale_tr2form_id_temp"><td id="4_scale_td2_1form_id_temp"><input id="4_scale_radioform_id_temp_1" name="4_scale_radioform_id_temp" value="1" type="radio"></td><td id="4_scale_td2_2form_id_temp"><input id="4_scale_radioform_id_temp_2" name="4_scale_radioform_id_temp" value="2" type="radio"></td><td id="4_scale_td2_3form_id_temp"><input id="4_scale_radioform_id_temp_3" name="4_scale_radioform_id_temp" value="3" type="radio"></td><td id="4_scale_td2_4form_id_temp"><input id="4_scale_radioform_id_temp_4" name="4_scale_radioform_id_temp" value="4" type="radio"></td><td id="4_scale_td2_5form_id_temp"><input id="4_scale_radioform_id_temp_5" name="4_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="4_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> Completely Satisfied</label></div></td></tr></tbody></table></td><td id="X_4" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="5" type="type_textarea"><td colspan="2" id="5_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="5_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">4. What would make you more satisfied with this [Product/Service]?</span><span id="5_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="5_element_sectionform_id_temp" class=""><input type="hidden" value="type_textarea" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="no" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><textarea class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" title="" value="" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 300px; height: 100px;"></textarea></td></tr></tbody></table></td><td id="X_5" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"><td id="page_numbersform_id_temp1" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">1/3</span></td><td valign="middle" align="right"><button id="page_next_1" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img1" style="float:right ;"><tr><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" onclick="show_or_hide(''1'')" onmouseover="chnage_icons_src(this,''minus'')" onmouseout="chnage_icons_src(this,''minus'')" id="show_page_img_1"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(''1'')" onmouseover="chnage_icons_src(this,''page_delete'')" onmouseout="chnage_icons_src(this,''page_delete'')"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(''1'')" onmouseover="chnage_icons_src(this,''page_delete_all'')" onmouseout="chnage_icons_src(this,''page_delete_all'')"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(''1'')" onmouseover="chnage_icons_src(this,''page_edit'')" onmouseout="chnage_icons_src(this,''page_edit'')"></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view2" page_title="Product Pricing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="6" type="type_radio"><td colspan="2" id="6_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="6_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="6_label_sectionform_id_temp" class=""><span id="6_element_labelform_id_temp" class="label">5. Do you feel our current price is merited by our product/service?</span><span id="6_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="6_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="6_typeform_id_temp" id="6_typeform_id_temp"><input type="hidden" value="no" name="6_requiredform_id_temp" id="6_requiredform_id_temp"><input type="hidden" value="no" name="6_randomizeform_id_temp" id="6_randomizeform_id_temp"><input type="hidden" value="no" name="6_allow_otherform_id_temp" id="6_allow_otherform_id_temp"><input type="hidden" value="1" name="6_rowcol_numform_id_temp" id="6_rowcol_numform_id_temp"><table><tbody id="6_table_little"><tr id="6_element_tr0"><td valign="top" id="6_td_little0" idi="0"><input type="radio" value="Yes, the price is about right" id="6_elementform_id_temp0" name="6_elementform_id_temp" onclick="set_default(''6'',''0'',''form_id_temp'')"><label id="6_label_element0" class="ch_rad_label" for="6_elementform_id_temp0">Yes, the price is about right</label></td></tr><tr id="6_element_tr1"><td valign="top" id="6_td_little1" idi="1"><input type="radio" value="No, the price is too low for your product" id="6_elementform_id_temp1" name="6_elementform_id_temp" onclick="set_default(''6'',''1'',''form_id_temp'')"><label id="6_label_element1" class="ch_rad_label" for="6_elementform_id_temp1">No, the price is too low for your product</label></td></tr><tr id="6_element_tr2"><td valign="top" id="6_td_little2" idi="2"><input type="radio" value="No, the price is to high for your product" id="6_elementform_id_temp2" name="6_elementform_id_temp" onclick="set_default(''6'',''2'',''form_id_temp'')"><label id="6_label_element2" class="ch_rad_label" for="6_elementform_id_temp2">No, the price is to high for your product</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_6" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="7" type="type_range"><td colspan="2" id="7_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="7_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">6. What is the amount you would every pay for a product like ours</span><span id="7_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="7_element_sectionform_id_temp" class=""><input type="hidden" value="type_range" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="no" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="30" name="7_range_widthform_id_temp" id="7_range_widthform_id_temp"><input type="hidden" value="1" name="7_range_stepform_id_temp" id="7_range_stepform_id_temp"><table id="7_elemet_table_littleform_id_temp"><tbody><tr><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp0" id="7_elementform_id_temp0" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp1" id="7_elementform_id_temp1" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td></tr><tr><td valign="top" align="left"><label class="mini_label" id="7_mini_label_from">From</label></td><td valign="top" align="left"><label class="mini_label" id="7_mini_label_to">To</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_7" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="8" type="type_star_rating"><td valign="middle" align="left" id="8_label_sectionform_id_temp" class="wdform_star_rating"><span id="8_element_labelform_id_temp" class="label">7. Please rate the product </span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class="wdform_star_rating toolbar_padding"><input type="hidden" value="type_star_rating" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="10" id="8_star_amountform_id_temp" name="8_star_amountform_id_temp"><input type="hidden" value="yellow" name="8_star_colorform_id_temp" id="8_star_colorform_id_temp"><input type="hidden" value="" id="8_selected_star_amountform_id_temp" name="8_selected_star_amountform_id_temp"><div id="8_elementform_id_temp" class="wdform_star_rating"><img id="8_star_0" src="{$plugin_path}/images/star.png" onmouseover="change_src(0,8,''form_id_temp'')" onmouseout="reset_src(0,8)" onclick="select_star_rating(0,8,''form_id_temp'')"><img id="8_star_1" src="{$plugin_path}/images/star.png" onmouseover="change_src(1,8,''form_id_temp'')" onmouseout="reset_src(1,8)" onclick="select_star_rating(1,8,''form_id_temp'')"><img id="8_star_2" src="{$plugin_path}/images/star.png" onmouseover="change_src(2,8,''form_id_temp'')" onmouseout="reset_src(2,8)" onclick="select_star_rating(2,8,''form_id_temp'')"><img id="8_star_3" src="{$plugin_path}/images/star.png" onmouseover="change_src(3,8,''form_id_temp'')" onmouseout="reset_src(3,8)" onclick="select_star_rating(3,8,''form_id_temp'')"><img id="8_star_4" src="{$plugin_path}/images/star.png" onmouseover="change_src(4,8,''form_id_temp'')" onmouseout="reset_src(4,8)" onclick="select_star_rating(4,8,''form_id_temp'')"><img id="8_star_5" src="{$plugin_path}/images/star.png" onmouseover="change_src(5,8,''form_id_temp'')" onmouseout="reset_src(5,8)" onclick="select_star_rating(5,8,''form_id_temp'')"><img id="8_star_6" src="{$plugin_path}/images/star.png" onmouseover="change_src(6,8,''form_id_temp'')" onmouseout="reset_src(6,8)" onclick="select_star_rating(6,8,''form_id_temp'')"><img id="8_star_7" src="{$plugin_path}/images/star.png" onmouseover="change_src(7,8,''form_id_temp'')" onmouseout="reset_src(7,8)" onclick="select_star_rating(7,8,''form_id_temp'')"><img id="8_star_8" src="{$plugin_path}/images/star.png" onmouseover="change_src(8,8,''form_id_temp'')" onmouseout="reset_src(8,8)" onclick="select_star_rating(8,8,''form_id_temp'')"><img id="8_star_9" src="{$plugin_path}/images/star.png" onmouseover="change_src(9,8,''form_id_temp'')" onmouseout="reset_src(9,8)" onclick="select_star_rating(9,8,''form_id_temp'')"></div></td><td id="X_8" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav2"><td valign="middle" align="left"><button id="page_previous_2" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp2" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">2/3</span></td><td valign="middle" align="right"><button id="page_next_2" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img2" style="float: right;"><tr valign="middle"><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_2" onclick="show_or_hide(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view3" page_title="Reward Drawing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="9" type="type_submitter_mail"><td colspan="2" id="9_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="9_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.</span><span id="9_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="middle" align="left" id="9_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_sendform_id_temp" id="9_sendform_id_temp"><input type="hidden" value="" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><input type="text" class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" value="" title="" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px;"></td></tr></tbody></table></td><td id="X_9" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="10" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="10_label_and_element_sectionform_id_temp"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class="" style="display: none;"><span id="10_element_labelform_id_temp" style="display: none;">type_submit_reset_10</span></td><td valign="middle" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="10_typeform_id_temp" id="10_typeform_id_temp"><button type="button" class="button_submit" id="10_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="10_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td><td id="X_10" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav3"><td valign="middle" align="left"><button id="page_previous_3" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp3" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">3/3</span></td></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img3" style="float: right;"><tr valign="middle"><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_3" onclick="show_or_hide(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table>', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Product Rating" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr id="2" class="wdform_tr_section_break" type="type_section_break"><td id="2_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><h1 class="sg-title" style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;" data-mce-style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;">Product Survey</h1></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_matrix"><td colspan="2" id="1_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="1_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="1_label_sectionform_id_temp" class="wdform_matrix"><span id="1_element_labelform_id_temp" class="label">1. Please indicate if you agree or disagree with the following statements</span><span id="1_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="1_element_sectionform_id_temp" class="wdform_matrix"><input type="hidden" value="type_matrix" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="hidden" value="radio" name="1_input_typeform_id_temp" id="1_input_typeform_id_temp"><table id="1_elementform_id_temp"><tbody id="1_table_little"><tr id="1_element_tr0"><td id="1_element_td0_0"></td><td id="1_element_td0_1" class="matrix_" style="\r\n text-align: center;\r\n"><label id="1_label_elementform_id_temp0_1" name="1_label_elementform_id_temp0_1" class="ch_rad_label" for="1_elementform_id_temp1">Strongly Disagree</label></td><td id="1_element_td0_2" class="matrix_"><label id="1_label_elementform_id_temp0_2" name="1_label_elementform_id_temp0_2" class="ch_rad_label" for="1_elementform_id_temp2">Disagree</label></td><td id="1_element_td0_3" class="matrix_"><label id="1_label_elementform_id_temp0_3" name="1_label_elementform_id_temp0_3" class="ch_rad_label" for="1_elementform_id_temp3">Neutral</label></td><td id="1_element_td0_4" class="matrix_"><label id="1_label_elementform_id_temp0_4" name="1_label_elementform_id_temp0_4" class="ch_rad_label" for="1_elementform_id_temp4">Agree</label></td><td id="1_element_td0_5" class="matrix_"><label id="1_label_elementform_id_temp0_5" name="1_label_elementform_id_temp0_5" class="ch_rad_label" for="1_elementform_id_temp5">Strongly Agree</label></td></tr><tr id="1_element_tr1"><td id="1_element_td1_0" class="matrix_"><label id="1_label_elementform_id_temp1_0" class="ch_rad_label" for="1_elementform_id_temp1">Product is affordable</label></td><td id="1_element_td1_1" style="text-align: center;" align="center"><input id="1_input_elementform_id_temp1_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_1"></td><td id="1_element_td1_2" style="text-align: center;"><input id="1_input_elementform_id_temp1_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_2"></td><td id="1_element_td1_3" style="text-align: center;"><input id="1_input_elementform_id_temp1_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_3"></td><td id="1_element_td1_4" style="text-align: center;"><input id="1_input_elementform_id_temp1_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_4"></td><td id="1_element_td1_5" style="text-align: center;"><input id="1_input_elementform_id_temp1_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_5"></td></tr><tr id="1_element_tr2"><td id="1_element_td2_0" class="matrix_"><label id="1_label_elementform_id_temp2_0" class="ch_rad_label" for="1_elementform_id_temp2">Product is valuable</label></td><td id="1_element_td2_1" style="text-align: center;"><input id="1_input_elementform_id_temp2_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_1"></td><td id="1_element_td2_2" style="text-align: center;"><input id="1_input_elementform_id_temp2_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_2"></td><td id="1_element_td2_3" style="text-align: center;"><input id="1_input_elementform_id_temp2_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_3"></td><td id="1_element_td2_4" style="text-align: center;"><input id="1_input_elementform_id_temp2_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_4"></td><td id="1_element_td2_5" style="text-align: center;"><input id="1_input_elementform_id_temp2_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_5"></td></tr><tr id="1_element_tr3"><td id="1_element_td3_0" class="matrix_"><label id="1_label_elementform_id_temp3_0" class="ch_rad_label" for="1_elementform_id_temp3">Product is better<br> than other products on<br> the market</label></td><td id="1_element_td3_1" style="text-align: center;"><input id="1_input_elementform_id_temp3_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_1"></td><td id="1_element_td3_2" style="text-align: center;"><input id="1_input_elementform_id_temp3_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_2"></td><td id="1_element_td3_3" style="text-align: center;"><input id="1_input_elementform_id_temp3_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_3"></td><td id="1_element_td3_4" style="text-align: center;"><input id="1_input_elementform_id_temp3_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_4"></td><td id="1_element_td3_5" style="text-align: center;"><input id="1_input_elementform_id_temp3_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_5"></td></tr><tr id="1_element_tr4"><td id="1_element_td4_0" class="matrix_"><label id="1_label_elementform_id_temp4_0" class="ch_rad_label" for="1_elementform_id_temp4">Product is easy to use</label></td><td id="1_element_td4_1" style="text-align: center;"><input id="1_input_elementform_id_temp4_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_1"></td><td id="1_element_td4_2" style="text-align: center;"><input id="1_input_elementform_id_temp4_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_2"></td><td id="1_element_td4_3" style="text-align: center;"><input id="1_input_elementform_id_temp4_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_3"></td><td id="1_element_td4_4" style="text-align: center;"><input id="1_input_elementform_id_temp4_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_4"></td><td id="1_element_td4_5" style="text-align: center;"><input id="1_input_elementform_id_temp4_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_5"></td></tr></tbody></table><input id="1_hidden_rowform_id_temp" name="1_hidden_rowform_id_temp" type="hidden" value="Product is affordable***Product is valuable***Product is better&lt;br&gt; than other products on&lt;br&gt; the market***Product is easy to use***"><input id="1_row_idsform_id_temp" name="1_row_idsform_id_temp" type="hidden" value="1,2,3,4,"><input id="1_hidden_columnform_id_temp" name="1_hidden_columnform_id_temp" type="hidden" value="Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree***"><input id="1_column_idsform_id_temp" name="1_column_idsform_id_temp" type="hidden" value="1,2,3,4,5,"></td></tr></tbody></table></td></tr><tr id="3" type="type_scale_rating"><td colspan="2" id="3_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="3_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="3_label_sectionform_id_temp" class="wdform_scale_rating"><span id="3_element_labelform_id_temp" class="label">2. How likely are you to recommend [Product/Service] to a friend or co-worker?</span><span id="3_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="3_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="3_typeform_id_temp" id="3_typeform_id_temp"><input type="hidden" value="no" name="3_requiredform_id_temp" id="3_requiredform_id_temp"><input type="hidden" value="5" id="3_scale_amountform_id_temp" name="3_scale_amountform_id_temp"><div id="3_elementform_id_temp" style="float: left;"><label class="mini_label" id="3_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Will not recommend </label><table id="3_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="3_scale_tr1form_id_temp"><td id="3_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="3_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="3_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="3_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="3_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="3_scale_tr2form_id_temp"><td id="3_scale_td2_1form_id_temp"><input id="3_scale_radioform_id_temp_1" name="3_scale_radioform_id_temp" value="1" type="radio"></td><td id="3_scale_td2_2form_id_temp"><input id="3_scale_radioform_id_temp_2" name="3_scale_radioform_id_temp" value="2" type="radio"></td><td id="3_scale_td2_3form_id_temp"><input id="3_scale_radioform_id_temp_3" name="3_scale_radioform_id_temp" value="3" type="radio"></td><td id="3_scale_td2_4form_id_temp"><input id="3_scale_radioform_id_temp_4" name="3_scale_radioform_id_temp" value="4" type="radio"></td><td id="3_scale_td2_5form_id_temp"><input id="3_scale_radioform_id_temp_5" name="3_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="3_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> I will recommend</label></div></td></tr></tbody></table></td></tr><tr id="4" type="type_scale_rating"><td colspan="2" id="4_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="4_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="4_label_sectionform_id_temp" class="wdform_scale_rating"><span id="4_element_labelform_id_temp" class="label">3. How satisfied are you with this [Product/Service]?</span><span id="4_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="4_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="4_typeform_id_temp" id="4_typeform_id_temp"><input type="hidden" value="no" name="4_requiredform_id_temp" id="4_requiredform_id_temp"><input type="hidden" value="5" id="4_scale_amountform_id_temp" name="4_scale_amountform_id_temp"><div id="4_elementform_id_temp" style="float: left;"><label class="mini_label" id="4_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Not Satisfied </label><table id="4_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="4_scale_tr1form_id_temp"><td id="4_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="4_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="4_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="4_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="4_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="4_scale_tr2form_id_temp"><td id="4_scale_td2_1form_id_temp"><input id="4_scale_radioform_id_temp_1" name="4_scale_radioform_id_temp" value="1" type="radio"></td><td id="4_scale_td2_2form_id_temp"><input id="4_scale_radioform_id_temp_2" name="4_scale_radioform_id_temp" value="2" type="radio"></td><td id="4_scale_td2_3form_id_temp"><input id="4_scale_radioform_id_temp_3" name="4_scale_radioform_id_temp" value="3" type="radio"></td><td id="4_scale_td2_4form_id_temp"><input id="4_scale_radioform_id_temp_4" name="4_scale_radioform_id_temp" value="4" type="radio"></td><td id="4_scale_td2_5form_id_temp"><input id="4_scale_radioform_id_temp_5" name="4_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="4_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> Completely Satisfied</label></div></td></tr></tbody></table></td></tr><tr id="5" type="type_textarea"><td colspan="2" id="5_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="5_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">4. What would make you more satisfied with this [Product/Service]?</span><span id="5_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="5_element_sectionform_id_temp" class=""><input type="hidden" value="type_textarea" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="no" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><textarea class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" title="" value="" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 300px; height: 100px;"></textarea></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"><td id="page_numbersform_id_temp1" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">1/3</span></td><td valign="middle" align="right"><button id="page_next_1" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view2" page_title="Product Pricing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="6" type="type_radio"><td colspan="2" id="6_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="6_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="6_label_sectionform_id_temp" class=""><span id="6_element_labelform_id_temp" class="label">5. Do you feel our current price is merited by our product/service?</span><span id="6_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="6_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="6_typeform_id_temp" id="6_typeform_id_temp"><input type="hidden" value="no" name="6_requiredform_id_temp" id="6_requiredform_id_temp"><input type="hidden" value="no" name="6_randomizeform_id_temp" id="6_randomizeform_id_temp"><input type="hidden" value="no" name="6_allow_otherform_id_temp" id="6_allow_otherform_id_temp"><input type="hidden" value="1" name="6_rowcol_numform_id_temp" id="6_rowcol_numform_id_temp"><table><tbody id="6_table_little"><tr id="6_element_tr0"><td valign="top" id="6_td_little0" idi="0"><input type="radio" value="Yes, the price is about right" id="6_elementform_id_temp0" name="6_elementform_id_temp" onclick="set_default(''6'',''0'',''form_id_temp'')"><label id="6_label_element0" class="ch_rad_label" for="6_elementform_id_temp0">Yes, the price is about right</label></td></tr><tr id="6_element_tr1"><td valign="top" id="6_td_little1" idi="1"><input type="radio" value="No, the price is too low for your product" id="6_elementform_id_temp1" name="6_elementform_id_temp" onclick="set_default(''6'',''1'',''form_id_temp'')"><label id="6_label_element1" class="ch_rad_label" for="6_elementform_id_temp1">No, the price is too low for your product</label></td></tr><tr id="6_element_tr2"><td valign="top" id="6_td_little2" idi="2"><input type="radio" value="No, the price is to high for your product" id="6_elementform_id_temp2" name="6_elementform_id_temp" onclick="set_default(''6'',''2'',''form_id_temp'')"><label id="6_label_element2" class="ch_rad_label" for="6_elementform_id_temp2">No, the price is to high for your product</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="7" type="type_range"><td colspan="2" id="7_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="7_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">6. What is the amount you would every pay for a product like ours</span><span id="7_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="7_element_sectionform_id_temp" class=""><input type="hidden" value="type_range" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="no" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="30" name="7_range_widthform_id_temp" id="7_range_widthform_id_temp"><input type="hidden" value="1" name="7_range_stepform_id_temp" id="7_range_stepform_id_temp"><table id="7_elemet_table_littleform_id_temp"><tbody><tr><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp0" id="7_elementform_id_temp0" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp1" id="7_elementform_id_temp1" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td></tr><tr><td valign="top" align="left"><label class="mini_label" id="7_mini_label_from">From</label></td><td valign="top" align="left"><label class="mini_label" id="7_mini_label_to">To</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="8" type="type_star_rating"><td valign="middle" align="left" id="8_label_sectionform_id_temp" class="wdform_star_rating"><span id="8_element_labelform_id_temp" class="label">7. Please rate the product </span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class="wdform_star_rating toolbar_padding"><input type="hidden" value="type_star_rating" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="10" id="8_star_amountform_id_temp" name="8_star_amountform_id_temp"><input type="hidden" value="yellow" name="8_star_colorform_id_temp" id="8_star_colorform_id_temp"><input type="hidden" value="" id="8_selected_star_amountform_id_temp" name="8_selected_star_amountform_id_temp"><div id="8_elementform_id_temp" class="wdform_star_rating"><img id="8_star_0" src="{$plugin_path}/images/star.png" onmouseover="change_src(0,8,''form_id_temp'')" onmouseout="reset_src(0,8)" onclick="select_star_rating(0,8,''form_id_temp'')"><img id="8_star_1" src="{$plugin_path}/images/star.png" onmouseover="change_src(1,8,''form_id_temp'')" onmouseout="reset_src(1,8)" onclick="select_star_rating(1,8,''form_id_temp'')"><img id="8_star_2" src="{$plugin_path}/images/star.png" onmouseover="change_src(2,8,''form_id_temp'')" onmouseout="reset_src(2,8)" onclick="select_star_rating(2,8,''form_id_temp'')"><img id="8_star_3" src="{$plugin_path}/images/star.png" onmouseover="change_src(3,8,''form_id_temp'')" onmouseout="reset_src(3,8)" onclick="select_star_rating(3,8,''form_id_temp'')"><img id="8_star_4" src="{$plugin_path}/images/star.png" onmouseover="change_src(4,8,''form_id_temp'')" onmouseout="reset_src(4,8)" onclick="select_star_rating(4,8,''form_id_temp'')"><img id="8_star_5" src="{$plugin_path}/images/star.png" onmouseover="change_src(5,8,''form_id_temp'')" onmouseout="reset_src(5,8)" onclick="select_star_rating(5,8,''form_id_temp'')"><img id="8_star_6" src="{$plugin_path}/images/star.png" onmouseover="change_src(6,8,''form_id_temp'')" onmouseout="reset_src(6,8)" onclick="select_star_rating(6,8,''form_id_temp'')"><img id="8_star_7" src="{$plugin_path}/images/star.png" onmouseover="change_src(7,8,''form_id_temp'')" onmouseout="reset_src(7,8)" onclick="select_star_rating(7,8,''form_id_temp'')"><img id="8_star_8" src="{$plugin_path}/images/star.png" onmouseover="change_src(8,8,''form_id_temp'')" onmouseout="reset_src(8,8)" onclick="select_star_rating(8,8,''form_id_temp'')"><img id="8_star_9" src="{$plugin_path}/images/star.png" onmouseover="change_src(9,8,''form_id_temp'')" onmouseout="reset_src(9,8)" onclick="select_star_rating(9,8,''form_id_temp'')"></div></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav2"><td valign="middle" align="left"><button id="page_previous_2" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp2" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">2/3</span></td><td valign="middle" align="right"><button id="page_next_2" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view3" page_title="Reward Drawing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="9" type="type_submitter_mail"><td colspan="2" id="9_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="9_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.</span><span id="9_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="middle" align="left" id="9_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_sendform_id_temp" id="9_sendform_id_temp"><input type="hidden" value="" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><input type="text" class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" value="" title="" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px;"></td></tr></tbody></table></td></tr><tr id="10" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="10_label_and_element_sectionform_id_temp"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class="" style="display: none;"><span id="10_element_labelform_id_temp" style="display: none;">type_submit_reset_10</span></td><td valign="middle" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="10_typeform_id_temp" id="10_typeform_id_temp"><button type="button" class="button_submit" id="10_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="10_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav3"><td valign="middle" align="left"><button id="page_previous_3" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp3" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">3/3</span></td></tr></tbody></table></td></tr></tbody></table>', 36, '// before form is load\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// before form submit\r\nfunction before_submit()\r\n{\r\n\r\n}\r\n\r\n// before form reset\r\nfunction before_reset()\r\n{\r\n\r\n}', '<p><span style="color: #16191e; font-family: Georgia, ''Times New Roman'', serif, sans-serif; font-size: small; line-height: 18px;">Thank you for taking our survey. Your response is very important to us.</span></p>', 'Thank you for taking our survey. Your response is very important to us.', 3, '<p>%all%</p>', '<p>%all%</p>', 11, '1#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. How satisfied are you with this [Product/Service]?#**label**#type_scale_rating#****#5#**id**#4. What would make you more satisfied with this [Product/Service]?#**label**#type_textarea#****#6#**id**#5. Do you feel our current price is merited by our product/service?#**label**#type_radio#****#7#**id**#6. What is the amount you would every pay for a product like ours#**label**#type_range#****#8#**id**#7. Please rate the product #**label**#type_star_rating#****#9#**id**#8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.#**label**#type_submitter_mail#****#10#**id**#type_submit_reset_10#**label**#type_submit_reset#****##**id**##**label**##****#', '1#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. How satisfied are you with this [Product/Service]?#**label**#type_scale_rating#****#5#**id**#4. What would make you more satisfied with this [Product/Service]?#**label**#type_textarea#****#6#**id**#5. Do you feel our current price is merited by our product/service?#**label**#type_radio#****#7#**id**#6. What is the amount you would every pay for a product like ours#**label**#type_range#****#8#**id**#7. Please rate the product #**label**#type_star_rating#****#9#**id**#8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.#**label**#type_submitter_mail#****#10#**id**#type_submit_reset_10#**label**#type_submit_reset#****#', 0, 'percentage', 'true', 'true', '', '', '', 0, 'testmode', '', 'USD', 0, '', '', '', '', '', '');
644
  HEREQUERYFORM;
645
  $wpdb->query($form_maker_rows10);
646
  $wpdb->query($form_maker_rows11);
420
  $updates = $updates . ", `show_title`='false'";
421
  $updates = $updates . ", `show_numbers`='true'";
422
  $updates = $updates . ", `javascript`='" . $form->javascript . "
423
+ // Occurs before the form is loaded
424
  function before_load()
425
  {
426
 
427
  }
428
 
429
+ // Occurs just before submitting the form
430
  function before_submit()
431
  {
432
  // IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don't need to return any value if you don't want to stop the submission.
433
  }
434
 
435
+ // Occurs just before resetting the form
436
  function before_reset()
437
  {
438
 
632
  $ajax_captcha_src = add_query_arg(array('action' => 'formmakerwdcaptcha', 'digit' => 6, 'i' => 'form_id_temp'), admin_url('admin-ajax.php'));
633
  $form_maker_rows10 = <<<HEREQUERYFORM
634
  INSERT INTO `{$table_name}` (`title`, `mail`, `form`, `form_front`, `theme`, `javascript`, `submit_text`, `url`, `submit_text_type`, `script_mail`, `script_mail_user`, `counter`, `label_order`, `label_order_current`, `article_id`, `pagination`, `show_title`, `show_numbers`, `public_key`, `private_key`, `recaptcha_theme`, `paypal_mode`, `checkout_mode`, `paypal_email`, `payment_currency`, `tax`, `from_mail`, `from_name`, `script1`, `script2`, `script_user1`, `script_user2`) VALUES
635
+ ('Registration Form With Payment', '', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="13" type="type_name"><td colspan="2" id="13_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="13_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Name</span><span id="13_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="top" align="left" id="13_element_sectionform_id_temp" class=""><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 192px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 192px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_13" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="2" type="type_submitter_mail"><td colspan="2" id="2_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="2_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="2_label_sectionform_id_temp" class=""><span id="2_element_labelform_id_temp" class="label">E-mail</span><span id="2_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="middle" align="left" id="2_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="2_typeform_id_temp" id="2_typeform_id_temp"><input type="hidden" value="yes" name="2_requiredform_id_temp" id="2_requiredform_id_temp"><input type="hidden" value="no" name="2_sendform_id_temp" id="2_sendform_id_temp"><input type="hidden" value="" name="2_uniqueform_id_temp" id="2_uniqueform_id_temp"><input type="text" class="input_deactive" id="2_elementform_id_temp" name="2_elementform_id_temp" value="" title="" onfocus="delete_value(''2_elementform_id_temp'')" onblur="return_value(''2_elementform_id_temp'')" onchange="change_value(''2_elementform_id_temp'')" style="width: 400px;"></td></tr></tbody></table></td><td id="X_2" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="14" type="type_address"><td colspan="2" id="14_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="14_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="14_label_sectionform_id_temp" class="wdform_address"><span id="14_element_labelform_id_temp" class="label">Address</span><span id="14_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="14_element_sectionform_id_temp" class="wdform_address"><input type="hidden" value="type_address" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" name="14_disable_fieldsform_id_temp" id="14_disable_fieldsform_id_temp" street1="no" street2="no" city="no" state="no" postal="no" country="no"><div id="14_div_address" style="width: 300px;"><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street1form_id_temp" name="14_street1form_id_temp" onchange="change_value(''14_street1form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street1" style="display: block;">Street Address</label></span><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street2form_id_temp" name="15_street2form_id_temp" onchange="change_value(''14_street2form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street2" style="display: block;">Street Address Line 2</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_cityform_id_temp" name="16_cityform_id_temp" onchange="change_value(''14_cityform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_city" style="display: block;">City</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><input type="text" id="14_stateform_id_temp" name="17_stateform_id_temp" onchange="change_value(''14_stateform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_state" style="display: block;">State / Province / Region</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_postalform_id_temp" name="18_postalform_id_temp" onchange="change_value(''14_postalform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_postal" style="display: block;">Postal / Zip Code</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><select type="text" id="14_countryform_id_temp" name="19_countryform_id_temp" onchange="change_value(''14_countryform_id_temp'')" style="width: 100%;"><option value=""></option><option value="Afghanistan">Afghanistan</option><option value="Albania">Albania</option><option value="Algeria">Algeria</option><option value="Andorra">Andorra</option><option value="Angola">Angola</option><option value="Antigua and Barbuda">Antigua and Barbuda</option><option value="Argentina">Argentina</option><option value="Armenia">Armenia</option><option value="Australia">Australia</option><option value="Austria">Austria</option><option value="Azerbaijan">Azerbaijan</option><option value="Bahamas">Bahamas</option><option value="Bahrain">Bahrain</option><option value="Bangladesh">Bangladesh</option><option value="Barbados">Barbados</option><option value="Belarus">Belarus</option><option value="Belgium">Belgium</option><option value="Belize">Belize</option><option value="Benin">Benin</option><option value="Bhutan">Bhutan</option><option value="Bolivia">Bolivia</option><option value="Bosnia and Herzegovina">Bosnia and Herzegovina</option><option value="Botswana">Botswana</option><option value="Brazil">Brazil</option><option value="Brunei">Brunei</option><option value="Bulgaria">Bulgaria</option><option value="Burkina Faso">Burkina Faso</option><option value="Burundi">Burundi</option><option value="Cambodia">Cambodia</option><option value="Cameroon">Cameroon</option><option value="Canada">Canada</option><option value="Cape Verde">Cape Verde</option><option value="Central African Republic">Central African Republic</option><option value="Chad">Chad</option><option value="Chile">Chile</option><option value="China">China</option><option value="Colombi">Colombi</option><option value="Comoros">Comoros</option><option value="Congo (Brazzaville)">Congo (Brazzaville)</option><option value="Congo">Congo</option><option value="Costa Rica">Costa Rica</option><option value="Cote d''Ivoire">Cote d''Ivoire</option><option value="Croatia">Croatia</option><option value="Cuba">Cuba</option><option value="Cyprus">Cyprus</option><option value="Czech Republic">Czech Republic</option><option value="Denmark">Denmark</option><option value="Djibouti">Djibouti</option><option value="Dominica">Dominica</option><option value="Dominican Republic">Dominican Republic</option><option value="East Timor (Timor Timur)">East Timor (Timor Timur)</option><option value="Ecuador">Ecuador</option><option value="Egypt">Egypt</option><option value="El Salvador">El Salvador</option><option value="Equatorial Guinea">Equatorial Guinea</option><option value="Eritrea">Eritrea</option><option value="Estonia">Estonia</option><option value="Ethiopia">Ethiopia</option><option value="Fiji">Fiji</option><option value="Finland">Finland</option><option value="France">France</option><option value="Gabon">Gabon</option><option value="Gambia, The">Gambia, The</option><option value="Georgia">Georgia</option><option value="Germany">Germany</option><option value="Ghana">Ghana</option><option value="Greece">Greece</option><option value="Grenada">Grenada</option><option value="Guatemala">Guatemala</option><option value="Guinea">Guinea</option><option value="Guinea-Bissau">Guinea-Bissau</option><option value="Guyana">Guyana</option><option value="Haiti">Haiti</option><option value="Honduras">Honduras</option><option value="Hungary">Hungary</option><option value="Iceland">Iceland</option><option value="India">India</option><option value="Indonesia">Indonesia</option><option value="Iran">Iran</option><option value="Iraq">Iraq</option><option value="Ireland">Ireland</option><option value="Israel">Israel</option><option value="Italy">Italy</option><option value="Jamaica">Jamaica</option><option value="Japan">Japan</option><option value="Jordan">Jordan</option><option value="Kazakhstan">Kazakhstan</option><option value="Kenya">Kenya</option><option value="Kiribati">Kiribati</option><option value="Korea, North">Korea, North</option><option value="Korea, South">Korea, South</option><option value="Kuwait">Kuwait</option><option value="Kyrgyzstan">Kyrgyzstan</option><option value="Laos">Laos</option><option value="Latvia">Latvia</option><option value="Lebanon">Lebanon</option><option value="Lesotho">Lesotho</option><option value="Liberia">Liberia</option><option value="Libya">Libya</option><option value="Liechtenstein">Liechtenstein</option><option value="Lithuania">Lithuania</option><option value="Luxembourg">Luxembourg</option><option value="Macedonia">Macedonia</option><option value="Madagascar">Madagascar</option><option value="Malawi">Malawi</option><option value="Malaysia">Malaysia</option><option value="Maldives">Maldives</option><option value="Mali">Mali</option><option value="Malta">Malta</option><option value="Marshall Islands">Marshall Islands</option><option value="Mauritania">Mauritania</option><option value="Mauritius">Mauritius</option><option value="Mexico">Mexico</option><option value="Micronesia">Micronesia</option><option value="Moldova">Moldova</option><option value="Monaco">Monaco</option><option value="Mongolia">Mongolia</option><option value="Morocco">Morocco</option><option value="Mozambique">Mozambique</option><option value="Myanmar">Myanmar</option><option value="Namibia">Namibia</option><option value="Nauru">Nauru</option><option value="Nepa">Nepa</option><option value="Netherlands">Netherlands</option><option value="New Zealand">New Zealand</option><option value="Nicaragua">Nicaragua</option><option value="Niger">Niger</option><option value="Nigeria">Nigeria</option><option value="Norway">Norway</option><option value="Oman">Oman</option><option value="Pakistan">Pakistan</option><option value="Palau">Palau</option><option value="Panama">Panama</option><option value="Papua New Guinea">Papua New Guinea</option><option value="Paraguay">Paraguay</option><option value="Peru">Peru</option><option value="Philippines">Philippines</option><option value="Poland">Poland</option><option value="Portugal">Portugal</option><option value="Qatar">Qatar</option><option value="Romania">Romania</option><option value="Russia">Russia</option><option value="Rwanda">Rwanda</option><option value="Saint Kitts and Nevis">Saint Kitts and Nevis</option><option value="Saint Lucia">Saint Lucia</option><option value="Saint Vincent">Saint Vincent</option><option value="Samoa">Samoa</option><option value="San Marino">San Marino</option><option value="Sao Tome and Principe">Sao Tome and Principe</option><option value="Saudi Arabia">Saudi Arabia</option><option value="Senegal">Senegal</option><option value="Serbia and Montenegro">Serbia and Montenegro</option><option value="Seychelles">Seychelles</option><option value="Sierra Leone">Sierra Leone</option><option value="Singapore">Singapore</option><option value="Slovakia">Slovakia</option><option value="Slovenia">Slovenia</option><option value="Solomon Islands">Solomon Islands</option><option value="Somalia">Somalia</option><option value="South Africa">South Africa</option><option value="Spain">Spain</option><option value="Sri Lanka">Sri Lanka</option><option value="Sudan">Sudan</option><option value="Suriname">Suriname</option><option value="Swaziland">Swaziland</option><option value="Sweden">Sweden</option><option value="Switzerland">Switzerland</option><option value="Syria">Syria</option><option value="Taiwan">Taiwan</option><option value="Tajikistan">Tajikistan</option><option value="Tanzania">Tanzania</option><option value="Thailand">Thailand</option><option value="Togo">Togo</option><option value="Tonga">Tonga</option><option value="Trinidad and Tobago">Trinidad and Tobago</option><option value="Tunisia">Tunisia</option><option value="Turkey">Turkey</option><option value="Turkmenistan">Turkmenistan</option><option value="Tuvalu">Tuvalu</option><option value="Uganda">Uganda</option><option value="Ukraine">Ukraine</option><option value="United Arab Emirates">United Arab Emirates</option><option value="United Kingdom">United Kingdom</option><option value="United States">United States</option><option value="Uruguay">Uruguay</option><option value="Uzbekistan">Uzbekistan</option><option value="Vanuatu">Vanuatu</option><option value="Vatican City">Vatican City</option><option value="Venezuela">Venezuela</option><option value="Vietnam">Vietnam</option><option value="Yemen">Yemen</option><option value="Zambia">Zambia</option><option value="Zimbabwe">Zimbabwe</option></select><label class="mini_label" id="14_mini_label_country" style="display: block;">Country</label></span></div></td></tr></tbody></table></td><td id="X_14" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="20" type="type_radio"><td colspan="2" id="20_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="20_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="20_label_sectionform_id_temp" class=""><span id="20_element_labelform_id_temp" class="label">Registration Package</span><span id="20_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="20_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="20_typeform_id_temp" id="20_typeform_id_temp"><input type="hidden" value="no" name="20_requiredform_id_temp" id="20_requiredform_id_temp"><input type="hidden" value="no" name="20_randomizeform_id_temp" id="20_randomizeform_id_temp"><input type="hidden" value="no" name="20_allow_otherform_id_temp" id="20_allow_otherform_id_temp"><input type="hidden" value="1" name="20_rowcol_numform_id_temp" id="20_rowcol_numform_id_temp"><table><tbody id="20_table_little"><tr id="20_element_tr0"><td valign="top" id="20_td_little0" idi="0"><input type="radio" value="Standard Registration ($50 USD)" id="20_elementform_id_temp0" name="20_elementform_id_temp" onclick="set_default(''20'',''0'',''form_id_temp'')"><label id="20_label_element0" class="ch_rad_label" for="20_elementform_id_temp0">Standard Registration ($50 USD)</label></td></tr><tr id="20_element_tr1"><td valign="top" id="20_td_little1" idi="1"><input type="radio" value="Premium Registration ($90 USD)" id="20_elementform_id_temp1" name="20_elementform_id_temp" onclick="set_default(''20'',''1'',''form_id_temp'')"><label id="20_label_element1" class="ch_rad_label" for="20_elementform_id_temp1">Premium Registration ($90 USD)</label></td></tr><tr id="20_element_tr2"><td valign="top" id="20_td_little2" idi="2"><input type="radio" value="Corporate Registration ($200 USD)" id="20_elementform_id_temp2" name="20_elementform_id_temp" onclick="set_default(''20'',''2'',''form_id_temp'')"><label id="20_label_element2" class="ch_rad_label" for="20_elementform_id_temp2">Corporate Registration ($200 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_20" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_20" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;20&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="21" type="type_radio"><td colspan="2" id="21_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="21_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="21_label_sectionform_id_temp" class=""><span id="21_element_labelform_id_temp" class="label">Accommodation Package</span><span id="21_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="21_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="21_typeform_id_temp" id="21_typeform_id_temp"><input type="hidden" value="no" name="21_requiredform_id_temp" id="21_requiredform_id_temp"><input type="hidden" value="no" name="21_randomizeform_id_temp" id="21_randomizeform_id_temp"><input type="hidden" value="no" name="21_allow_otherform_id_temp" id="21_allow_otherform_id_temp"><input type="hidden" value="1" name="21_rowcol_numform_id_temp" id="21_rowcol_numform_id_temp"><table><tbody id="21_table_little"><tr id="21_element_tr0"><td valign="top" id="21_td_little0" idi="0"><input type="radio" value="None" id="21_elementform_id_temp0" name="21_elementform_id_temp" onclick="set_default(''21'',''0'',''form_id_temp'')"><label id="21_label_element0" class="ch_rad_label" for="21_elementform_id_temp0">None</label></td></tr><tr id="21_element_tr1"><td valign="top" id="21_td_little1" idi="1"><input type="radio" value="2 Days in 3 Star Hotel ($300 USD)" id="21_elementform_id_temp1" name="21_elementform_id_temp" onclick="set_default(''21'',''1'',''form_id_temp'')"><label id="21_label_element1" class="ch_rad_label" for="21_elementform_id_temp1">2 Days in 3 Star Hotel ($300 USD)</label></td></tr><tr id="21_element_tr2"><td valign="top" id="21_td_little2" idi="2"><input type="radio" value="2 Days in 4 Star Hotel ($550 USD)" id="21_elementform_id_temp2" name="21_elementform_id_temp" onclick="set_default(''21'',''2'',''form_id_temp'')"><label id="21_label_element2" class="ch_rad_label" for="21_elementform_id_temp2">2 Days in 4 Star Hotel ($550 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_21" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_21" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;21&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="11" type="type_paypal_checkbox"><td colspan="2" id="11_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="11_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="11_label_sectionform_id_temp" class=""><span id="11_element_labelform_id_temp" class="label">Additional</span><span id="11_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="11_element_sectionform_id_temp" class=""><input type="hidden" value="type_paypal_checkbox" name="11_typeform_id_temp" id="11_typeform_id_temp"><input type="hidden" value="no" name="11_requiredform_id_temp" id="11_requiredform_id_temp"><input type="hidden" value="no" name="11_randomizeform_id_temp" id="11_randomizeform_id_temp"><input type="hidden" value="no" name="11_allow_otherform_id_temp" id="11_allow_otherform_id_temp"><input type="hidden" value="0" name="11_allow_other_numform_id_temp" id="11_allow_other_numform_id_temp"><table><tbody id="11_table_little"><tr id="11_element_tr0"><td valign="top" id="11_td_little0" idi="0"><input type="checkbox" id="11_elementform_id_temp0" name="11_elementform_id_temp0" value="10" onclick="set_checked(''11'',''0'',''form_id_temp'')"><label id="11_label_element0" class="ch_rad_label" for="11_elementform_id_temp0">I''m also buying the t-shirt of the event ($10 USD)</label><input type="hidden" id="11_elementlabel_form_id_temp0" name="11_elementform_id_temp0_label" value="I''m also buying the t-shirt of the event ($10 USD)"></td></tr></tbody></table><div id="11_divform_id_temp"></div></td></tr></tbody></table></td><td id="X_11" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');">Reset</button></td></tr></tbody></table></td><td id="X_12" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img1" style="float:right ;"><tr><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_2" onclick="show_or_hide(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table>', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="13" type="type_name"><td colspan="2" id="13_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="13_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Name</span><span id="13_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="top" align="left" id="13_element_sectionform_id_temp" class=""><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 192px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 192px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="2" type="type_submitter_mail"><td colspan="2" id="2_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="2_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="2_label_sectionform_id_temp" class=""><span id="2_element_labelform_id_temp" class="label">E-mail</span><span id="2_required_elementform_id_temp" class="required"> *</span></td></tr><tr><td valign="middle" align="left" id="2_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="2_typeform_id_temp" id="2_typeform_id_temp"><input type="hidden" value="yes" name="2_requiredform_id_temp" id="2_requiredform_id_temp"><input type="hidden" value="no" name="2_sendform_id_temp" id="2_sendform_id_temp"><input type="hidden" value="" name="2_uniqueform_id_temp" id="2_uniqueform_id_temp"><input type="text" class="input_deactive" id="2_elementform_id_temp" name="2_elementform_id_temp" value="" title="" onfocus="delete_value(''2_elementform_id_temp'')" onblur="return_value(''2_elementform_id_temp'')" onchange="change_value(''2_elementform_id_temp'')" style="width: 400px;"></td></tr></tbody></table></td></tr><tr id="14" type="type_address"><td colspan="2" id="14_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="14_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="14_label_sectionform_id_temp" class="wdform_address"><span id="14_element_labelform_id_temp" class="label">Address</span><span id="14_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="14_element_sectionform_id_temp" class="wdform_address"><input type="hidden" value="type_address" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" name="14_disable_fieldsform_id_temp" id="14_disable_fieldsform_id_temp" street1="no" street2="no" city="no" state="no" postal="no" country="no"><div id="14_div_address" style="width: 300px;"><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street1form_id_temp" name="14_street1form_id_temp" onchange="change_value(''14_street1form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street1" style="display: block;">Street Address</label></span><span style="float: left; width: 100%; padding-bottom: 8px; display: block;"><input type="text" id="14_street2form_id_temp" name="15_street2form_id_temp" onchange="change_value(''14_street2form_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_street2" style="display: block;">Street Address Line 2</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_cityform_id_temp" name="16_cityform_id_temp" onchange="change_value(''14_cityform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_city" style="display: block;">City</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><input type="text" id="14_stateform_id_temp" name="17_stateform_id_temp" onchange="change_value(''14_stateform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_state" style="display: block;">State / Province / Region</label></span><span style="float: left; width: 48%; padding-bottom: 8px;"><input type="text" id="14_postalform_id_temp" name="18_postalform_id_temp" onchange="change_value(''14_postalform_id_temp'')" style="width: 100%;"><label class="mini_label" id="14_mini_label_postal" style="display: block;">Postal / Zip Code</label></span><span style="float: right; width: 48%; padding-bottom: 8px;"><select type="text" id="14_countryform_id_temp" name="19_countryform_id_temp" onchange="change_value(''14_countryform_id_temp'')" style="width: 100%;"><option value=""></option><option value="Afghanistan">Afghanistan</option><option value="Albania">Albania</option><option value="Algeria">Algeria</option><option value="Andorra">Andorra</option><option value="Angola">Angola</option><option value="Antigua and Barbuda">Antigua and Barbuda</option><option value="Argentina">Argentina</option><option value="Armenia">Armenia</option><option value="Australia">Australia</option><option value="Austria">Austria</option><option value="Azerbaijan">Azerbaijan</option><option value="Bahamas">Bahamas</option><option value="Bahrain">Bahrain</option><option value="Bangladesh">Bangladesh</option><option value="Barbados">Barbados</option><option value="Belarus">Belarus</option><option value="Belgium">Belgium</option><option value="Belize">Belize</option><option value="Benin">Benin</option><option value="Bhutan">Bhutan</option><option value="Bolivia">Bolivia</option><option value="Bosnia and Herzegovina">Bosnia and Herzegovina</option><option value="Botswana">Botswana</option><option value="Brazil">Brazil</option><option value="Brunei">Brunei</option><option value="Bulgaria">Bulgaria</option><option value="Burkina Faso">Burkina Faso</option><option value="Burundi">Burundi</option><option value="Cambodia">Cambodia</option><option value="Cameroon">Cameroon</option><option value="Canada">Canada</option><option value="Cape Verde">Cape Verde</option><option value="Central African Republic">Central African Republic</option><option value="Chad">Chad</option><option value="Chile">Chile</option><option value="China">China</option><option value="Colombi">Colombi</option><option value="Comoros">Comoros</option><option value="Congo (Brazzaville)">Congo (Brazzaville)</option><option value="Congo">Congo</option><option value="Costa Rica">Costa Rica</option><option value="Cote d''Ivoire">Cote d''Ivoire</option><option value="Croatia">Croatia</option><option value="Cuba">Cuba</option><option value="Cyprus">Cyprus</option><option value="Czech Republic">Czech Republic</option><option value="Denmark">Denmark</option><option value="Djibouti">Djibouti</option><option value="Dominica">Dominica</option><option value="Dominican Republic">Dominican Republic</option><option value="East Timor (Timor Timur)">East Timor (Timor Timur)</option><option value="Ecuador">Ecuador</option><option value="Egypt">Egypt</option><option value="El Salvador">El Salvador</option><option value="Equatorial Guinea">Equatorial Guinea</option><option value="Eritrea">Eritrea</option><option value="Estonia">Estonia</option><option value="Ethiopia">Ethiopia</option><option value="Fiji">Fiji</option><option value="Finland">Finland</option><option value="France">France</option><option value="Gabon">Gabon</option><option value="Gambia, The">Gambia, The</option><option value="Georgia">Georgia</option><option value="Germany">Germany</option><option value="Ghana">Ghana</option><option value="Greece">Greece</option><option value="Grenada">Grenada</option><option value="Guatemala">Guatemala</option><option value="Guinea">Guinea</option><option value="Guinea-Bissau">Guinea-Bissau</option><option value="Guyana">Guyana</option><option value="Haiti">Haiti</option><option value="Honduras">Honduras</option><option value="Hungary">Hungary</option><option value="Iceland">Iceland</option><option value="India">India</option><option value="Indonesia">Indonesia</option><option value="Iran">Iran</option><option value="Iraq">Iraq</option><option value="Ireland">Ireland</option><option value="Israel">Israel</option><option value="Italy">Italy</option><option value="Jamaica">Jamaica</option><option value="Japan">Japan</option><option value="Jordan">Jordan</option><option value="Kazakhstan">Kazakhstan</option><option value="Kenya">Kenya</option><option value="Kiribati">Kiribati</option><option value="Korea, North">Korea, North</option><option value="Korea, South">Korea, South</option><option value="Kuwait">Kuwait</option><option value="Kyrgyzstan">Kyrgyzstan</option><option value="Laos">Laos</option><option value="Latvia">Latvia</option><option value="Lebanon">Lebanon</option><option value="Lesotho">Lesotho</option><option value="Liberia">Liberia</option><option value="Libya">Libya</option><option value="Liechtenstein">Liechtenstein</option><option value="Lithuania">Lithuania</option><option value="Luxembourg">Luxembourg</option><option value="Macedonia">Macedonia</option><option value="Madagascar">Madagascar</option><option value="Malawi">Malawi</option><option value="Malaysia">Malaysia</option><option value="Maldives">Maldives</option><option value="Mali">Mali</option><option value="Malta">Malta</option><option value="Marshall Islands">Marshall Islands</option><option value="Mauritania">Mauritania</option><option value="Mauritius">Mauritius</option><option value="Mexico">Mexico</option><option value="Micronesia">Micronesia</option><option value="Moldova">Moldova</option><option value="Monaco">Monaco</option><option value="Mongolia">Mongolia</option><option value="Morocco">Morocco</option><option value="Mozambique">Mozambique</option><option value="Myanmar">Myanmar</option><option value="Namibia">Namibia</option><option value="Nauru">Nauru</option><option value="Nepa">Nepa</option><option value="Netherlands">Netherlands</option><option value="New Zealand">New Zealand</option><option value="Nicaragua">Nicaragua</option><option value="Niger">Niger</option><option value="Nigeria">Nigeria</option><option value="Norway">Norway</option><option value="Oman">Oman</option><option value="Pakistan">Pakistan</option><option value="Palau">Palau</option><option value="Panama">Panama</option><option value="Papua New Guinea">Papua New Guinea</option><option value="Paraguay">Paraguay</option><option value="Peru">Peru</option><option value="Philippines">Philippines</option><option value="Poland">Poland</option><option value="Portugal">Portugal</option><option value="Qatar">Qatar</option><option value="Romania">Romania</option><option value="Russia">Russia</option><option value="Rwanda">Rwanda</option><option value="Saint Kitts and Nevis">Saint Kitts and Nevis</option><option value="Saint Lucia">Saint Lucia</option><option value="Saint Vincent">Saint Vincent</option><option value="Samoa">Samoa</option><option value="San Marino">San Marino</option><option value="Sao Tome and Principe">Sao Tome and Principe</option><option value="Saudi Arabia">Saudi Arabia</option><option value="Senegal">Senegal</option><option value="Serbia and Montenegro">Serbia and Montenegro</option><option value="Seychelles">Seychelles</option><option value="Sierra Leone">Sierra Leone</option><option value="Singapore">Singapore</option><option value="Slovakia">Slovakia</option><option value="Slovenia">Slovenia</option><option value="Solomon Islands">Solomon Islands</option><option value="Somalia">Somalia</option><option value="South Africa">South Africa</option><option value="Spain">Spain</option><option value="Sri Lanka">Sri Lanka</option><option value="Sudan">Sudan</option><option value="Suriname">Suriname</option><option value="Swaziland">Swaziland</option><option value="Sweden">Sweden</option><option value="Switzerland">Switzerland</option><option value="Syria">Syria</option><option value="Taiwan">Taiwan</option><option value="Tajikistan">Tajikistan</option><option value="Tanzania">Tanzania</option><option value="Thailand">Thailand</option><option value="Togo">Togo</option><option value="Tonga">Tonga</option><option value="Trinidad and Tobago">Trinidad and Tobago</option><option value="Tunisia">Tunisia</option><option value="Turkey">Turkey</option><option value="Turkmenistan">Turkmenistan</option><option value="Tuvalu">Tuvalu</option><option value="Uganda">Uganda</option><option value="Ukraine">Ukraine</option><option value="United Arab Emirates">United Arab Emirates</option><option value="United Kingdom">United Kingdom</option><option value="United States">United States</option><option value="Uruguay">Uruguay</option><option value="Uzbekistan">Uzbekistan</option><option value="Vanuatu">Vanuatu</option><option value="Vatican City">Vatican City</option><option value="Venezuela">Venezuela</option><option value="Vietnam">Vietnam</option><option value="Yemen">Yemen</option><option value="Zambia">Zambia</option><option value="Zimbabwe">Zimbabwe</option></select><label class="mini_label" id="14_mini_label_country" style="display: block;">Country</label></span></div></td></tr></tbody></table></td></tr><tr id="20" type="type_radio"><td colspan="2" id="20_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="20_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="20_label_sectionform_id_temp" class=""><span id="20_element_labelform_id_temp" class="label">Registration Package</span><span id="20_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="20_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="20_typeform_id_temp" id="20_typeform_id_temp"><input type="hidden" value="no" name="20_requiredform_id_temp" id="20_requiredform_id_temp"><input type="hidden" value="no" name="20_randomizeform_id_temp" id="20_randomizeform_id_temp"><input type="hidden" value="no" name="20_allow_otherform_id_temp" id="20_allow_otherform_id_temp"><input type="hidden" value="1" name="20_rowcol_numform_id_temp" id="20_rowcol_numform_id_temp"><table><tbody id="20_table_little"><tr id="20_element_tr0"><td valign="top" id="20_td_little0" idi="0"><input type="radio" value="Standard Registration ($50 USD)" id="20_elementform_id_temp0" name="20_elementform_id_temp" onclick="set_default(''20'',''0'',''form_id_temp'')"><label id="20_label_element0" class="ch_rad_label" for="20_elementform_id_temp0">Standard Registration ($50 USD)</label></td></tr><tr id="20_element_tr1"><td valign="top" id="20_td_little1" idi="1"><input type="radio" value="Premium Registration ($90 USD)" id="20_elementform_id_temp1" name="20_elementform_id_temp" onclick="set_default(''20'',''1'',''form_id_temp'')"><label id="20_label_element1" class="ch_rad_label" for="20_elementform_id_temp1">Premium Registration ($90 USD)</label></td></tr><tr id="20_element_tr2"><td valign="top" id="20_td_little2" idi="2"><input type="radio" value="Corporate Registration ($200 USD)" id="20_elementform_id_temp2" name="20_elementform_id_temp" onclick="set_default(''20'',''2'',''form_id_temp'')"><label id="20_label_element2" class="ch_rad_label" for="20_elementform_id_temp2">Corporate Registration ($200 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="21" type="type_radio"><td colspan="2" id="21_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="21_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="21_label_sectionform_id_temp" class=""><span id="21_element_labelform_id_temp" class="label">Accommodation Package</span><span id="21_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="21_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="21_typeform_id_temp" id="21_typeform_id_temp"><input type="hidden" value="no" name="21_requiredform_id_temp" id="21_requiredform_id_temp"><input type="hidden" value="no" name="21_randomizeform_id_temp" id="21_randomizeform_id_temp"><input type="hidden" value="no" name="21_allow_otherform_id_temp" id="21_allow_otherform_id_temp"><input type="hidden" value="1" name="21_rowcol_numform_id_temp" id="21_rowcol_numform_id_temp"><table><tbody id="21_table_little"><tr id="21_element_tr0"><td valign="top" id="21_td_little0" idi="0"><input type="radio" value="None" id="21_elementform_id_temp0" name="21_elementform_id_temp" onclick="set_default(''21'',''0'',''form_id_temp'')"><label id="21_label_element0" class="ch_rad_label" for="21_elementform_id_temp0">None</label></td></tr><tr id="21_element_tr1"><td valign="top" id="21_td_little1" idi="1"><input type="radio" value="2 Days in 3 Star Hotel ($300 USD)" id="21_elementform_id_temp1" name="21_elementform_id_temp" onclick="set_default(''21'',''1'',''form_id_temp'')"><label id="21_label_element1" class="ch_rad_label" for="21_elementform_id_temp1">2 Days in 3 Star Hotel ($300 USD)</label></td></tr><tr id="21_element_tr2"><td valign="top" id="21_td_little2" idi="2"><input type="radio" value="2 Days in 4 Star Hotel ($550 USD)" id="21_elementform_id_temp2" name="21_elementform_id_temp" onclick="set_default(''21'',''2'',''form_id_temp'')"><label id="21_label_element2" class="ch_rad_label" for="21_elementform_id_temp2">2 Days in 4 Star Hotel ($550 USD)</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="11" type="type_paypal_checkbox"><td colspan="2" id="11_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="11_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="11_label_sectionform_id_temp" class=""><span id="11_element_labelform_id_temp" class="label">Additional</span><span id="11_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="11_element_sectionform_id_temp" class=""><input type="hidden" value="type_paypal_checkbox" name="11_typeform_id_temp" id="11_typeform_id_temp"><input type="hidden" value="no" name="11_requiredform_id_temp" id="11_requiredform_id_temp"><input type="hidden" value="no" name="11_randomizeform_id_temp" id="11_randomizeform_id_temp"><input type="hidden" value="no" name="11_allow_otherform_id_temp" id="11_allow_otherform_id_temp"><input type="hidden" value="0" name="11_allow_other_numform_id_temp" id="11_allow_other_numform_id_temp"><table><tbody id="11_table_little"><tr id="11_element_tr0"><td valign="top" id="11_td_little0" idi="0"><input type="checkbox" id="11_elementform_id_temp0" name="11_elementform_id_temp0" value="10" onclick="set_checked(''11'',''0'',''form_id_temp'')"><label id="11_label_element0" class="ch_rad_label" for="11_elementform_id_temp0">I''m also buying the t-shirt of the event ($10 USD)</label><input type="hidden" id="11_elementlabel_form_id_temp0" name="11_elementform_id_temp0_label" value="I''m also buying the t-shirt of the event ($10 USD)"></td></tr></tbody></table><div id="11_divform_id_temp"></div></td></tr></tbody></table></td></tr><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');">Reset</button></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody></table>', 24, '// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}', '', '', 1, '<p>%all%</p>', '<p>%all%</p>', 22, '13#**id**#Name#**label**#type_name#****#2#**id**#E-mail#**label**#type_submitter_mail#****#14#**id**#Street Address#**label**#type_address#****#15#**id**#Street Address Line 2#**label**#type_address#****#16#**id**#City#**label**#type_address#****#17#**id**#State / Province / Region#**label**#type_address#****#18#**id**#Postal / Zip Code#**label**#type_address#****#19#**id**#Country#**label**#type_address#****#20#**id**#Registration Package#**label**#type_radio#****#21#**id**#Accommodation Package#**label**#type_radio#****#11#**id**#Additional#**label**#type_paypal_checkbox#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#1#**id**#Name#**label**#type_name#****#3#**id**#Street Line#**label**#type_address#****#4#**id**#Street Line2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State#**label**#type_address#****#7#**id**#Postal#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Registration Package#**label**#type_paypal_radio#****#10#**id**#Accommodation Package#**label**#type_paypal_radio#****#', '13#**id**#Name#**label**#type_name#****#2#**id**#E-mail#**label**#type_submitter_mail#****#14#**id**#Street Address#**label**#type_address#****#15#**id**#Street Address Line 2#**label**#type_address#****#16#**id**#City#**label**#type_address#****#17#**id**#State / Province / Region#**label**#type_address#****#18#**id**#Postal / Zip Code#**label**#type_address#****#19#**id**#Country#**label**#type_address#****#20#**id**#Registration Package#**label**#type_radio#****#21#**id**#Accommodation Package#**label**#type_radio#****#11#**id**#Additional#**label**#type_paypal_checkbox#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#', 0, 'none', 'false', 'true', '', '', '', 0, 'testmode', '', 'USD', 0, '', '', '', '', '', '');
636
  HEREQUERYFORM;
637
  $form_maker_rows11 = <<<HEREQUERYFORM
638
  INSERT INTO `{$table_name}` (`title`, `mail`, `form`, `form_front`, `theme`, `javascript`, `submit_text`, `url`, `submit_text_type`, `script_mail`, `script_mail_user`, `counter`, `label_order`, `label_order_current`, `article_id`, `pagination`, `show_title`, `show_numbers`, `public_key`, `private_key`, `recaptcha_theme`, `paypal_mode`, `checkout_mode`, `paypal_email`, `payment_currency`, `tax`, `from_mail`, `from_name`, `script1`, `script2`, `script_user1`, `script_user2`) VALUES
639
+ ('Cupcake Order Form', '', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_date"><td valign="middle" align="left" id="1_label_sectionform_id_temp" class=""><span id="1_element_labelform_id_temp" class="label">Choose your date for pick up:</span><span id="1_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="1_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_date" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="text" value="" class="wdform_date" id="1_elementform_id_temp" name="1_elementform_id_temp" maxlength="10" size="10" onchange="change_value(''1_elementform_id_temp'')"><input id="1_buttonform_id_temp" class="button" type="reset" value="..." format="%Y-%m-%d" onclick="return showCalendar(''1_elementform_id_temp'' ,''%Y-%m-%d'')"></td><td id="X_1" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="16" type="type_time"><td valign="top" align="left" id="16_label_sectionform_id_temp" class=""><span id="16_element_labelform_id_temp" class="label">Time:</span><span id="16_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="16_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_time" name="16_typeform_id_temp" id="16_typeform_id_temp"><input type="hidden" value="no" name="16_requiredform_id_temp" id="16_requiredform_id_temp"><table id="16_table_time" cellpadding="0" cellspacing="0"><tbody><tr id="16_tr_time1"><td id="16_td_time_input1" style="width: 32px;"><input type="text" value="" class="time_box" id="16_hhform_id_temp" name="16_hhform_id_temp" onkeypress="return check_hour(event, ''16_hhform_id_temp'', ''23'')" onkeyup="change_hour(event, ''16_hhform_id_temp'',''23'')" onblur="add_0(''16_hhform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input2" style="width: 32px;"><input type="text" value="" class="time_box" id="16_mmform_id_temp" name="16_mmform_id_temp" onkeypress="return check_minute(event, ''16_mmform_id_temp'')" onkeyup="change_minute(event, ''16_mmform_id_temp'')" onblur="add_0(''16_mmform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input3" style="width: 32px;"><input type="text" value="" class="time_box" id="16_ssform_id_temp" name="16_ssform_id_temp" onkeypress="return check_second(event, ''16_ssform_id_temp'')" onkeyup="change_second(event, ''16_ssform_id_temp'')" onblur="add_0(''16_ssform_id_temp'')"></td></tr><tr id="16_tr_time2"><td id="16_td_time_label1"><label class="mini_label" id="16_mini_label_hh">HH</label></td><td></td><td id="16_td_time_label2"><label class="mini_label" id="16_mini_label_mm">MM</label></td><td></td><td id="16_td_time_label3"><label class="mini_label" id="16_mini_label_ss">SS</label></td></tr></tbody></table></td><td id="X_16" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_16" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;16&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="13" type="type_name"><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Full Name:</span><span id="13_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="13_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 100px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 100px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td><td id="X_13" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_13" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;13&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="5" type="type_submitter_mail"><td valign="middle" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">E-mail:</span><span id="5_required_elementform_id_temp" class="required"> *</span></td><td valign="middle" align="left" id="5_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_submitter_mail" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="yes" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_sendform_id_temp" id="5_sendform_id_temp"><input type="hidden" value="" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><input type="text" class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" value="ex: myname@example.com" title="ex: myname@example.com" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 200px;"></td><td id="X_5" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="14" type="type_phone"><td valign="top" align="left" id="14_label_sectionform_id_temp" class=""><span id="14_element_labelform_id_temp" class="label">Mobile/Phone Number:</span><span id="14_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="14_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_phone" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" value="" name="14_uniqueform_id_temp" id="14_uniqueform_id_temp"><table id="14_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="14_tr_name1"><td id="14_td_name_input_first"><input type="text" class="input_deactive" id="14_element_firstform_id_temp" name="14_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_firstform_id_temp&quot;)" onblur="return_value(&quot;14_element_firstform_id_temp&quot;)" onchange="change_value(''14_element_firstform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 50px;"><span class="wdform_line" style="margin: 0px 4px; padding: 0px;">-</span></td><td id="14_td_name_input_last"><input type="text" class="input_deactive" id="14_element_lastform_id_temp" name="14_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_lastform_id_temp&quot;)" onblur="return_value(&quot;14_element_lastform_id_temp&quot;)" onchange="change_value(''14_element_lastform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 135px;"></td></tr><tr id="14_tr_name2"><td id="14_td_name_label_first" align="left"><label class="mini_label" id="14_mini_label_area_code">Area Code</label></td><td id="14_td_name_label_last" align="left"><label class="mini_label" id="14_mini_label_phone_number">Phone Number</label></td></tr></tbody></table></td><td id="X_14" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_14" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;14&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="7" type="type_paypal_checkbox"><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">Cupcakes Flavors (1 doz. minimum)</span><span id="7_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="7_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_checkbox" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="yes" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="no" name="7_randomizeform_id_temp" id="7_randomizeform_id_temp"><input type="hidden" value="no" name="7_allow_otherform_id_temp" id="7_allow_otherform_id_temp"><input type="hidden" value="0" name="7_allow_other_numform_id_temp" id="7_allow_other_numform_id_temp"><table><tbody id="7_table_little"><tr id="7_element_tr0"><td valign="top" id="7_td_little0" idi="0"><input type="checkbox" id="7_elementform_id_temp0" name="7_elementform_id_temp0" value="15" onclick="set_checked(''7'',''0'',''form_id_temp'')"><label id="7_label_element0" class="ch_rad_label" for="7_elementform_id_temp0">Red Velvet ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp0" name="7_elementform_id_temp0_label" value="Red Velvet ($15.00)"></td></tr><tr id="7_element_tr1"><td valign="top" id="7_td_little1" idi="1"><input type="checkbox" id="7_elementform_id_temp1" name="7_elementform_id_temp1" value="10" onclick="set_checked(''7'',''1'',''form_id_temp'')"><label id="7_label_element1" class="ch_rad_label" for="7_elementform_id_temp1">Vanilla ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp1" name="7_elementform_id_temp1_label" value="Vanilla ($10.00)"></td></tr><tr id="7_element_tr2"><td valign="top" id="7_td_little2" idi="2"><input type="checkbox" id="7_elementform_id_temp2" name="7_elementform_id_temp2" value="12" onclick="set_checked(''7'',''2'',''form_id_temp'')"><label id="7_label_element2" class="ch_rad_label" for="7_elementform_id_temp2">Chocolate ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp2" name="7_elementform_id_temp2_label" value="Chocolate ($12.00)"></td></tr><tr id="7_element_tr3"><td valign="top" id="7_td_little3" idi="3"><input type="checkbox" id="7_elementform_id_temp3" name="7_elementform_id_temp3" value="15" onclick="set_checked(''7'',''3'',''form_id_temp'')"><label id="7_label_element3" class="ch_rad_label" for="7_elementform_id_temp3">Guinness ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp3" name="7_elementform_id_temp3_label" value="Guinness ($15.00)"></td></tr><tr id="7_element_tr4"><td valign="top" id="7_td_little4" idi="4"><input type="checkbox" id="7_elementform_id_temp4" name="7_elementform_id_temp4" value="12" onclick="set_checked(''7'',''4'',''form_id_temp'')"><label id="7_label_element4" class="ch_rad_label" for="7_elementform_id_temp4">Coconut ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp4" name="7_elementform_id_temp4_label" value="Coconut ($12.00)"></td></tr><tr id="7_element_tr5"><td valign="top" id="7_td_little5" idi="5"><input type="checkbox" id="7_elementform_id_temp5" name="7_elementform_id_temp5" value="10" onclick="set_checked(''7'',''5'',''form_id_temp'')"><label id="7_label_element5" class="ch_rad_label" for="7_elementform_id_temp5">Lemon ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp5" name="7_elementform_id_temp5_label" value="Lemon ($10.00)"></td></tr><tr id="7_element_tr6"><td valign="top" id="7_td_little6" idi="6"><input type="checkbox" id="7_elementform_id_temp6" name="7_elementform_id_temp6" value="120" onclick="set_checked(''7'',''6'',''form_id_temp'')"><label id="7_label_element6" class="ch_rad_label" for="7_elementform_id_temp6">Chocolate Mint ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp6" name="7_elementform_id_temp6_label" value="Chocolate Mint ($12.00)"></td></tr></tbody></table><div id="7_divform_id_temp"><span id="7_element_quantity_spanform_id_temp" style="margin-right: 15px;"><label class="mini_label" id="7_element_quantity_label_form_id_temp" style="margin-right: 5px;"><!--repstart-->Quantity<!--repend--></label><input type="text" value="1" id="7_element_quantityform_id_temp" name="7_element_quantityform_id_temp" onkeypress="return check_isnum(event)" onchange="change_value(''7_element_quantityform_id_temp'', this.value)" style="width: 30px; margin: 2px 0px;"></span><span id="7_property_0" style="margin-right: 15px;"><label class="mini_label" id="7_property_label_form_id_temp0" style="margin-right: 5px;">Cupcake Size</label><select id="7_propertyform_id_temp0" name="7_propertyform_id_temp0" type="null" style="width: auto; margin: 2px 0px;"><option id="7_0_option0" value="Regular(yield - 12 cupcakes)">Regular(yield - 12 cupcakes)</option><option id="7_0_option1" value="Small (yield - 24 cupcakes)">Small (yield - 24 cupcakes)</option><option id="7_0_option2" value="Mini (yield - 48 cupcakes)">Mini (yield - 48 cupcakes)</option></select></span></div></td><td id="X_7" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="8" type="type_paypal_radio"><td valign="top" align="left" id="8_label_sectionform_id_temp" class=""><span id="8_element_labelform_id_temp" class="label">Choose your butter cream frosting:</span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_radio" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="no" name="8_randomizeform_id_temp" id="8_randomizeform_id_temp"><input type="hidden" value="no" name="8_allow_otherform_id_temp" id="8_allow_otherform_id_temp"><table><tbody id="8_table_little"><tr id="8_element_tr0"><td valign="top" id="8_td_little0" idi="0"><input type="radio" id="8_elementform_id_temp0" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''0'',''form_id_temp'')"><label id="8_label_element0" class="ch_rad_label" for="8_elementform_id_temp0">Vanilla</label><input type="hidden" id="8_elementlabel_form_id_temp0" name="8_elementform_id_temp0_label" value="Vanilla"></td></tr><tr id="8_element_tr1"><td valign="top" id="8_td_little1" idi="1"><input type="radio" id="8_elementform_id_temp1" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''1'',''form_id_temp'')"><label id="8_label_element1" class="ch_rad_label" for="8_elementform_id_temp1">Chocolate</label><input type="hidden" id="8_elementlabel_form_id_temp1" name="8_elementform_id_temp1_label" value="Chocolate"></td></tr><tr id="8_element_tr2"><td valign="top" id="8_td_little2" idi="2"><input type="radio" id="8_elementform_id_temp2" name="8_elementform_id_temp" value="3" onclick="set_default(''8'',''2'',''form_id_temp'')"><label id="8_label_element2" class="ch_rad_label" for="8_elementform_id_temp2">Cream Cheese - add $3.00</label><input type="hidden" id="8_elementlabel_form_id_temp2" name="8_elementform_id_temp2_label" value="Cream Cheese - add $3.00"></td></tr><tr id="8_element_tr3"><td valign="top" id="8_td_little3" idi="3"><input type="radio" id="8_elementform_id_temp3" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''3'',''form_id_temp'')"><label id="8_label_element3" class="ch_rad_label" for="8_elementform_id_temp3">Salted Caramel</label><input type="hidden" id="8_elementlabel_form_id_temp3" name="8_elementform_id_temp3_label" value="Salted Caramel"></td></tr><tr id="8_element_tr4"><td valign="top" id="8_td_little4" idi="4"><input type="radio" id="8_elementform_id_temp4" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''4'',''form_id_temp'')"><label id="8_label_element4" class="ch_rad_label" for="8_elementform_id_temp4">Guinness</label><input type="hidden" id="8_elementlabel_form_id_temp4" name="8_elementform_id_temp4_label" value="Guinness"></td></tr><tr id="8_element_tr5"><td valign="top" id="8_td_little5" idi="5"><input type="radio" id="8_elementform_id_temp5" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''5'',''form_id_temp'')"><label id="8_label_element5" class="ch_rad_label" for="8_elementform_id_temp5">Almond</label><input type="hidden" id="8_elementlabel_form_id_temp5" name="8_elementform_id_temp5_label" value="Almond"></td></tr><tr id="8_element_tr6"><td valign="top" id="8_td_little6" idi="6"><input type="radio" id="8_elementform_id_temp6" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''6'',''form_id_temp'')"><label id="8_label_element6" class="ch_rad_label" for="8_elementform_id_temp6">Coconut</label><input type="hidden" id="8_elementlabel_form_id_temp6" name="8_elementform_id_temp6_label" value="Coconut"></td></tr></tbody></table><div id="8_divform_id_temp"></div></td><td id="X_8" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="9" type="type_textarea"><td valign="top" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">Details (if any):</span><span id="9_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="9_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_textarea" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><textarea class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" title="for example: pink frosting with silver pearls" value="for example: pink frosting with silver pearls" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px; height: 100px;">for example: pink frosting with silver pearls</textarea></td><td id="X_9" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="10" type="type_file_upload"><td colspan="2" id="10_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class=""><span id="10_element_labelform_id_temp" class="label">Upload an image of cupcakes you like so that I can have an idea of what you want. </span><span id="10_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_file_upload" name="10_typeform_id_temp" id="10_typeform_id_temp"><input type="hidden" value="no" name="10_requiredform_id_temp" id="10_requiredform_id_temp"><input type="hidden" value="***max_sizeskizb10***2000***max_sizeverj10***" id="10_max_size" name="10_max_size"><input type="hidden" value="***destinationskizb10***{$plugin_path}/uploads***destinationverj10***" id="10_destination" name="10_destination"><input type="hidden" value="***extensionskizb10***jpg, jpeg, png, gif***extensionverj10***" id="10_extension" name="10_extension"><input type="file" class="file_upload" id="10_elementform_id_temp" name="10_fileform_id_temp"></td></tr></tbody></table></td><td id="X_10" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr id="11" class="wdform_tr_section_break" type="type_section_break"><td id="11_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><strong><span style="font-family: helvetica; font-size: small; color: #ff00ff;" data-mce-style="font-family: helvetica; font-size: small; color: #ff00ff;"><em>Your order total and order number will be communicated via email. Orders outside of Trinidad will be cancelled.&nbsp;</em></span></strong></p><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><span style="font-family: helvetica; color: #000000; font-size: small;" data-mce-style="font-family: helvetica; color: #000000; font-size: small;"><strong>Themed orders will incur an additional cost...</strong></span></p></td><td id="X_11" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_section_break(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="edit_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"><span id="11_element_labelform_id_temp" style="display: none;">custom_11</span></td><td id="dublicate_11" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;11&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td><td id="X_12" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_12" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;12&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img1" style="float:right ;"><tr><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_2" onclick="show_or_hide(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table>', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-top:0px solid black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Untitled page" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_date"><td valign="middle" align="left" id="1_label_sectionform_id_temp" class=""><span id="1_element_labelform_id_temp" class="label">Choose your date for pick up:</span><span id="1_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="1_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_date" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="text" value="" class="wdform_date" id="1_elementform_id_temp" name="1_elementform_id_temp" maxlength="10" size="10" onchange="change_value(''1_elementform_id_temp'')"><input id="1_buttonform_id_temp" class="button" type="reset" value="..." format="%Y-%m-%d" onclick="return showCalendar(''1_elementform_id_temp'' ,''%Y-%m-%d'')"></td></tr><tr id="16" type="type_time"><td valign="top" align="left" id="16_label_sectionform_id_temp" class=""><span id="16_element_labelform_id_temp" class="label">Time:</span><span id="16_required_elementform_id_temp" class="required"></span></td><td valign="middle" align="left" id="16_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_time" name="16_typeform_id_temp" id="16_typeform_id_temp"><input type="hidden" value="no" name="16_requiredform_id_temp" id="16_requiredform_id_temp"><table id="16_table_time" cellpadding="0" cellspacing="0"><tbody><tr id="16_tr_time1"><td id="16_td_time_input1" style="width: 32px;"><input type="text" value="" class="time_box" id="16_hhform_id_temp" name="16_hhform_id_temp" onkeypress="return check_hour(event, ''16_hhform_id_temp'', ''23'')" onkeyup="change_hour(event, ''16_hhform_id_temp'',''23'')" onblur="add_0(''16_hhform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input2" style="width: 32px;"><input type="text" value="" class="time_box" id="16_mmform_id_temp" name="16_mmform_id_temp" onkeypress="return check_minute(event, ''16_mmform_id_temp'')" onkeyup="change_minute(event, ''16_mmform_id_temp'')" onblur="add_0(''16_mmform_id_temp'')"></td><td align="center"><span class="wdform_colon" style="vertical-align: middle;">&nbsp;:&nbsp;</span></td><td id="16_td_time_input3" style="width: 32px;"><input type="text" value="" class="time_box" id="16_ssform_id_temp" name="16_ssform_id_temp" onkeypress="return check_second(event, ''16_ssform_id_temp'')" onkeyup="change_second(event, ''16_ssform_id_temp'')" onblur="add_0(''16_ssform_id_temp'')"></td></tr><tr id="16_tr_time2"><td id="16_td_time_label1"><label class="mini_label" id="16_mini_label_hh">HH</label></td><td></td><td id="16_td_time_label2"><label class="mini_label" id="16_mini_label_mm">MM</label></td><td></td><td id="16_td_time_label3"><label class="mini_label" id="16_mini_label_ss">SS</label></td></tr></tbody></table></td></tr><tr id="13" type="type_name"><td valign="top" align="left" id="13_label_sectionform_id_temp" class=""><span id="13_element_labelform_id_temp" class="label">Full Name:</span><span id="13_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="13_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_name" name="13_typeform_id_temp" id="13_typeform_id_temp"><input type="hidden" value="yes" name="13_requiredform_id_temp" id="13_requiredform_id_temp"><input type="hidden" value="no" name="13_uniqueform_id_temp" id="13_uniqueform_id_temp"><table id="13_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="13_tr_name1"><td id="13_td_name_input_first"><input type="text" class="input_deactive" id="13_element_firstform_id_temp" name="13_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_firstform_id_temp&quot;)" onblur="return_value(&quot;13_element_firstform_id_temp&quot;)" onchange="change_value(''13_element_firstform_id_temp'')" style="margin-right: 10px; width: 100px;"></td><td id="13_td_name_input_last"><input type="text" class="input_deactive" id="13_element_lastform_id_temp" name="13_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;13_element_lastform_id_temp&quot;)" onblur="return_value(&quot;13_element_lastform_id_temp&quot;)" onchange="change_value(''13_element_lastform_id_temp'')" style="margin-right: 10px; width: 100px;"></td></tr><tr id="13_tr_name2"><td id="13_td_name_label_first" align="left"><label class="mini_label" id="13_mini_label_first">First</label></td><td id="13_td_name_label_last" align="left"><label class="mini_label" id="13_mini_label_last">Last</label></td></tr></tbody></table></td></tr><tr id="5" type="type_submitter_mail"><td valign="middle" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">E-mail:</span><span id="5_required_elementform_id_temp" class="required"> *</span></td><td valign="middle" align="left" id="5_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_submitter_mail" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="yes" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_sendform_id_temp" id="5_sendform_id_temp"><input type="hidden" value="" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><input type="text" class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" value="ex: myname@example.com" title="ex: myname@example.com" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 200px;"></td></tr><tr id="14" type="type_phone"><td valign="top" align="left" id="14_label_sectionform_id_temp" class=""><span id="14_element_labelform_id_temp" class="label">Mobile/Phone Number:</span><span id="14_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="14_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_phone" name="14_typeform_id_temp" id="14_typeform_id_temp"><input type="hidden" value="no" name="14_requiredform_id_temp" id="14_requiredform_id_temp"><input type="hidden" value="" name="14_uniqueform_id_temp" id="14_uniqueform_id_temp"><table id="14_table_name" cellpadding="0" cellspacing="0"><tbody><tr id="14_tr_name1"><td id="14_td_name_input_first"><input type="text" class="input_deactive" id="14_element_firstform_id_temp" name="14_element_firstform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_firstform_id_temp&quot;)" onblur="return_value(&quot;14_element_firstform_id_temp&quot;)" onchange="change_value(''14_element_firstform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 50px;"><span class="wdform_line" style="margin: 0px 4px; padding: 0px;">-</span></td><td id="14_td_name_input_last"><input type="text" class="input_deactive" id="14_element_lastform_id_temp" name="14_element_lastform_id_temp" value="" title="" onfocus="delete_value(&quot;14_element_lastform_id_temp&quot;)" onblur="return_value(&quot;14_element_lastform_id_temp&quot;)" onchange="change_value(''14_element_lastform_id_temp'')" onkeypress="return check_isnum(event)" style="width: 135px;"></td></tr><tr id="14_tr_name2"><td id="14_td_name_label_first" align="left"><label class="mini_label" id="14_mini_label_area_code">Area Code</label></td><td id="14_td_name_label_last" align="left"><label class="mini_label" id="14_mini_label_phone_number">Phone Number</label></td></tr></tbody></table></td></tr><tr id="7" type="type_paypal_checkbox"><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">Cupcakes Flavors (1 doz. minimum)</span><span id="7_required_elementform_id_temp" class="required"> *</span></td><td valign="top" align="left" id="7_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_checkbox" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="yes" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="no" name="7_randomizeform_id_temp" id="7_randomizeform_id_temp"><input type="hidden" value="no" name="7_allow_otherform_id_temp" id="7_allow_otherform_id_temp"><input type="hidden" value="0" name="7_allow_other_numform_id_temp" id="7_allow_other_numform_id_temp"><table><tbody id="7_table_little"><tr id="7_element_tr0"><td valign="top" id="7_td_little0" idi="0"><input type="checkbox" id="7_elementform_id_temp0" name="7_elementform_id_temp0" value="15" onclick="set_checked(''7'',''0'',''form_id_temp'')"><label id="7_label_element0" class="ch_rad_label" for="7_elementform_id_temp0">Red Velvet ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp0" name="7_elementform_id_temp0_label" value="Red Velvet ($15.00)"></td></tr><tr id="7_element_tr1"><td valign="top" id="7_td_little1" idi="1"><input type="checkbox" id="7_elementform_id_temp1" name="7_elementform_id_temp1" value="10" onclick="set_checked(''7'',''1'',''form_id_temp'')"><label id="7_label_element1" class="ch_rad_label" for="7_elementform_id_temp1">Vanilla ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp1" name="7_elementform_id_temp1_label" value="Vanilla ($10.00)"></td></tr><tr id="7_element_tr2"><td valign="top" id="7_td_little2" idi="2"><input type="checkbox" id="7_elementform_id_temp2" name="7_elementform_id_temp2" value="12" onclick="set_checked(''7'',''2'',''form_id_temp'')"><label id="7_label_element2" class="ch_rad_label" for="7_elementform_id_temp2">Chocolate ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp2" name="7_elementform_id_temp2_label" value="Chocolate ($12.00)"></td></tr><tr id="7_element_tr3"><td valign="top" id="7_td_little3" idi="3"><input type="checkbox" id="7_elementform_id_temp3" name="7_elementform_id_temp3" value="15" onclick="set_checked(''7'',''3'',''form_id_temp'')"><label id="7_label_element3" class="ch_rad_label" for="7_elementform_id_temp3">Guinness ($15.00)</label><input type="hidden" id="7_elementlabel_form_id_temp3" name="7_elementform_id_temp3_label" value="Guinness ($15.00)"></td></tr><tr id="7_element_tr4"><td valign="top" id="7_td_little4" idi="4"><input type="checkbox" id="7_elementform_id_temp4" name="7_elementform_id_temp4" value="12" onclick="set_checked(''7'',''4'',''form_id_temp'')"><label id="7_label_element4" class="ch_rad_label" for="7_elementform_id_temp4">Coconut ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp4" name="7_elementform_id_temp4_label" value="Coconut ($12.00)"></td></tr><tr id="7_element_tr5"><td valign="top" id="7_td_little5" idi="5"><input type="checkbox" id="7_elementform_id_temp5" name="7_elementform_id_temp5" value="10" onclick="set_checked(''7'',''5'',''form_id_temp'')"><label id="7_label_element5" class="ch_rad_label" for="7_elementform_id_temp5">Lemon ($10.00)</label><input type="hidden" id="7_elementlabel_form_id_temp5" name="7_elementform_id_temp5_label" value="Lemon ($10.00)"></td></tr><tr id="7_element_tr6"><td valign="top" id="7_td_little6" idi="6"><input type="checkbox" id="7_elementform_id_temp6" name="7_elementform_id_temp6" value="120" onclick="set_checked(''7'',''6'',''form_id_temp'')"><label id="7_label_element6" class="ch_rad_label" for="7_elementform_id_temp6">Chocolate Mint ($12.00)</label><input type="hidden" id="7_elementlabel_form_id_temp6" name="7_elementform_id_temp6_label" value="Chocolate Mint ($12.00)"></td></tr></tbody></table><div id="7_divform_id_temp"><span id="7_element_quantity_spanform_id_temp" style="margin-right: 15px;"><label class="mini_label" id="7_element_quantity_label_form_id_temp" style="margin-right: 5px;"><!--repstart-->Quantity<!--repend--></label><input type="text" value="1" id="7_element_quantityform_id_temp" name="7_element_quantityform_id_temp" onkeypress="return check_isnum(event)" onchange="change_value(''7_element_quantityform_id_temp'', this.value)" style="width: 30px; margin: 2px 0px;"></span><span id="7_property_0" style="margin-right: 15px;"><label class="mini_label" id="7_property_label_form_id_temp0" style="margin-right: 5px;">Cupcake Size</label><select id="7_propertyform_id_temp0" name="7_propertyform_id_temp0" type="null" style="width: auto; margin: 2px 0px;"><option id="7_0_option0" value="Regular(yield - 12 cupcakes)">Regular(yield - 12 cupcakes)</option><option id="7_0_option1" value="Small (yield - 24 cupcakes)">Small (yield - 24 cupcakes)</option><option id="7_0_option2" value="Mini (yield - 48 cupcakes)">Mini (yield - 48 cupcakes)</option></select></span></div></td></tr><tr id="8" type="type_paypal_radio"><td valign="top" align="left" id="8_label_sectionform_id_temp" class=""><span id="8_element_labelform_id_temp" class="label">Choose your butter cream frosting:</span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_paypal_radio" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="no" name="8_randomizeform_id_temp" id="8_randomizeform_id_temp"><input type="hidden" value="no" name="8_allow_otherform_id_temp" id="8_allow_otherform_id_temp"><table><tbody id="8_table_little"><tr id="8_element_tr0"><td valign="top" id="8_td_little0" idi="0"><input type="radio" id="8_elementform_id_temp0" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''0'',''form_id_temp'')"><label id="8_label_element0" class="ch_rad_label" for="8_elementform_id_temp0">Vanilla</label><input type="hidden" id="8_elementlabel_form_id_temp0" name="8_elementform_id_temp0_label" value="Vanilla"></td></tr><tr id="8_element_tr1"><td valign="top" id="8_td_little1" idi="1"><input type="radio" id="8_elementform_id_temp1" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''1'',''form_id_temp'')"><label id="8_label_element1" class="ch_rad_label" for="8_elementform_id_temp1">Chocolate</label><input type="hidden" id="8_elementlabel_form_id_temp1" name="8_elementform_id_temp1_label" value="Chocolate"></td></tr><tr id="8_element_tr2"><td valign="top" id="8_td_little2" idi="2"><input type="radio" id="8_elementform_id_temp2" name="8_elementform_id_temp" value="3" onclick="set_default(''8'',''2'',''form_id_temp'')"><label id="8_label_element2" class="ch_rad_label" for="8_elementform_id_temp2">Cream Cheese - add $3.00</label><input type="hidden" id="8_elementlabel_form_id_temp2" name="8_elementform_id_temp2_label" value="Cream Cheese - add $3.00"></td></tr><tr id="8_element_tr3"><td valign="top" id="8_td_little3" idi="3"><input type="radio" id="8_elementform_id_temp3" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''3'',''form_id_temp'')"><label id="8_label_element3" class="ch_rad_label" for="8_elementform_id_temp3">Salted Caramel</label><input type="hidden" id="8_elementlabel_form_id_temp3" name="8_elementform_id_temp3_label" value="Salted Caramel"></td></tr><tr id="8_element_tr4"><td valign="top" id="8_td_little4" idi="4"><input type="radio" id="8_elementform_id_temp4" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''4'',''form_id_temp'')"><label id="8_label_element4" class="ch_rad_label" for="8_elementform_id_temp4">Guinness</label><input type="hidden" id="8_elementlabel_form_id_temp4" name="8_elementform_id_temp4_label" value="Guinness"></td></tr><tr id="8_element_tr5"><td valign="top" id="8_td_little5" idi="5"><input type="radio" id="8_elementform_id_temp5" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''5'',''form_id_temp'')"><label id="8_label_element5" class="ch_rad_label" for="8_elementform_id_temp5">Almond</label><input type="hidden" id="8_elementlabel_form_id_temp5" name="8_elementform_id_temp5_label" value="Almond"></td></tr><tr id="8_element_tr6"><td valign="top" id="8_td_little6" idi="6"><input type="radio" id="8_elementform_id_temp6" name="8_elementform_id_temp" value="0" onclick="set_default(''8'',''6'',''form_id_temp'')"><label id="8_label_element6" class="ch_rad_label" for="8_elementform_id_temp6">Coconut</label><input type="hidden" id="8_elementlabel_form_id_temp6" name="8_elementform_id_temp6_label" value="Coconut"></td></tr></tbody></table><div id="8_divform_id_temp"></div></td></tr><tr id="9" type="type_textarea"><td valign="top" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">Details (if any):</span><span id="9_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="9_element_sectionform_id_temp" class=" toolbar_padding"><input type="hidden" value="type_textarea" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><textarea class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" title="for example: pink frosting with silver pearls" value="for example: pink frosting with silver pearls" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px; height: 100px;">for example: pink frosting with silver pearls</textarea></td></tr><tr id="10" type="type_file_upload"><td colspan="2" id="10_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class=""><span id="10_element_labelform_id_temp" class="label">Upload an image of cupcakes you like so that I can have an idea of what you want. </span><span id="10_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_file_upload" name="10_typeform_id_temp" id="10_typeform_id_temp"><input type="hidden" value="no" name="10_requiredform_id_temp" id="10_requiredform_id_temp"><input type="hidden" value="***max_sizeskizb10***2000***max_sizeverj10***" id="10_max_size" name="10_max_size"><input type="hidden" value="***destinationskizb10***{$plugin_path}/uploads***destinationverj10***" id="10_destination" name="10_destination"><input type="hidden" value="***extensionskizb10***jpg, jpeg, png, gif***extensionverj10***" id="10_extension" name="10_extension"><input type="file" class="file_upload" id="10_elementform_id_temp" name="10_fileform_id_temp"></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="11" class="wdform_tr_section_break" type="type_section_break"><td id="11_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><strong><span style="font-family: helvetica; font-size: small; color: #ff00ff;" data-mce-style="font-family: helvetica; font-size: small; color: #ff00ff;"><em>Your order total and order number will be communicated via email. Orders outside of Trinidad will be cancelled.&nbsp;</em></span></strong></p><p style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;" data-mce-style="color: #212121; font-family: Helvetica; font-size: 13px; line-height: 18px;"><span style="font-family: helvetica; color: #000000; font-size: small;" data-mce-style="font-family: helvetica; color: #000000; font-size: small;"><strong>Themed orders will incur an additional cost...</strong></span></p></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="12" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="12_label_and_element_sectionform_id_temp"><table id="12_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="12_label_sectionform_id_temp" class="" style="display: none;"><span id="12_element_labelform_id_temp" style="display: none;">type_submit_reset_12</span></td><td valign="middle" align="left" id="12_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="12_typeform_id_temp" id="12_typeform_id_temp"><button type="button" class="button_submit" id="12_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="12_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"></tr></tbody></table></td></tr></tbody></table>', 10, '// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}', '', '', 1, '<p>%all%</p>', '<p>%all%</p>', 21, '1#**id**#Choose your date for pick up:#**label**#type_date#****#16#**id**#Time:#**label**#type_time#****#13#**id**#Full Name:#**label**#type_name#****#5#**id**#E-mail:#**label**#type_submitter_mail#****#14#**id**#Mobile/Phone Number:#**label**#type_phone#****#7#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_paypal_checkbox#****#8#**id**#Choose your butter cream frosting:#**label**#type_paypal_radio#****#9#**id**#Details (if any):#**label**#type_textarea#****#10#**id**#Upload an image of cupcakes you like so that I can have an idea of what you want. #**label**#type_file_upload#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#20#**id**#Total:#**label**#type_paypal_total#****#19#**id**#Total:#**label**#type_paypal_total#****#17#**id**#Martix:#**label**#type_matrix#****#18#**id**#Total:#**label**#type_paypal_total#****#2#**id**#Time:#**label**#type_time#****#3#**id**#Full Name:#**label**#type_name#****#6#**id**#Mobile/Phone Number:#**label**#type_phone#****#4#**id**#Birth Date:#**label**#type_date_fields#****##**id**##**label**##****#', '1#**id**#Choose your date for pick up:#**label**#type_date#****#16#**id**#Time:#**label**#type_time#****#13#**id**#Full Name:#**label**#type_name#****#5#**id**#E-mail:#**label**#type_submitter_mail#****#14#**id**#Mobile/Phone Number:#**label**#type_phone#****#7#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_paypal_checkbox#****#8#**id**#Choose your butter cream frosting:#**label**#type_paypal_radio#****#9#**id**#Details (if any):#**label**#type_textarea#****#10#**id**#Upload an image of cupcakes you like so that I can have an idea of what you want. #**label**#type_file_upload#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#', 0, 'none', 'false', 'true', '', '', '', 0, 'testmode', '', 'USD', 0, '', '', '', '', '', '');
640
  HEREQUERYFORM;
641
  $form_maker_rows12 = <<<HEREQUERYFORM
642
  INSERT INTO `{$table_name}` (`title`, `mail`, `form`, `form_front`, `theme`, `javascript`, `submit_text`, `url`, `submit_text_type`, `script_mail`, `script_mail_user`, `counter`, `label_order`, `label_order_current`, `article_id`, `pagination`, `show_title`, `show_numbers`, `public_key`, `private_key`, `recaptcha_theme`, `paypal_mode`, `checkout_mode`, `paypal_email`, `payment_currency`, `tax`, `from_mail`, `from_name`, `script1`, `script2`, `script_user1`, `script_user2`) VALUES
643
+ ('Product Survey', '', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Product Rating" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"></tbody></table></td></tr><tr id="2" class="wdform_tr_section_break" type="type_section_break"><td id="2_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><h1 class="sg-title" style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;" data-mce-style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;">Product Survey</h1></td><td id="X_2" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_section_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="edit_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"><span id="2_element_labelform_id_temp" style="display: none;">custom_2</span></td><td id="dublicate_2" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_matrix"><td colspan="2" id="1_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="1_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="1_label_sectionform_id_temp" class="wdform_matrix"><span id="1_element_labelform_id_temp" class="label">1. Please indicate if you agree or disagree with the following statements</span><span id="1_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="1_element_sectionform_id_temp" class="wdform_matrix"><input type="hidden" value="type_matrix" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="hidden" value="radio" name="1_input_typeform_id_temp" id="1_input_typeform_id_temp"><table id="1_elementform_id_temp"><tbody id="1_table_little"><tr id="1_element_tr0"><td id="1_element_td0_0"></td><td id="1_element_td0_1" class="matrix_" style="\r\n text-align: center;\r\n"><label id="1_label_elementform_id_temp0_1" name="1_label_elementform_id_temp0_1" class="ch_rad_label" for="1_elementform_id_temp1">Strongly Disagree</label></td><td id="1_element_td0_2" class="matrix_"><label id="1_label_elementform_id_temp0_2" name="1_label_elementform_id_temp0_2" class="ch_rad_label" for="1_elementform_id_temp2">Disagree</label></td><td id="1_element_td0_3" class="matrix_"><label id="1_label_elementform_id_temp0_3" name="1_label_elementform_id_temp0_3" class="ch_rad_label" for="1_elementform_id_temp3">Neutral</label></td><td id="1_element_td0_4" class="matrix_"><label id="1_label_elementform_id_temp0_4" name="1_label_elementform_id_temp0_4" class="ch_rad_label" for="1_elementform_id_temp4">Agree</label></td><td id="1_element_td0_5" class="matrix_"><label id="1_label_elementform_id_temp0_5" name="1_label_elementform_id_temp0_5" class="ch_rad_label" for="1_elementform_id_temp5">Strongly Agree</label></td></tr><tr id="1_element_tr1"><td id="1_element_td1_0" class="matrix_"><label id="1_label_elementform_id_temp1_0" class="ch_rad_label" for="1_elementform_id_temp1">Product is affordable</label></td><td id="1_element_td1_1" style="text-align: center;" align="center"><input id="1_input_elementform_id_temp1_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_1"></td><td id="1_element_td1_2" style="text-align: center;"><input id="1_input_elementform_id_temp1_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_2"></td><td id="1_element_td1_3" style="text-align: center;"><input id="1_input_elementform_id_temp1_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_3"></td><td id="1_element_td1_4" style="text-align: center;"><input id="1_input_elementform_id_temp1_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_4"></td><td id="1_element_td1_5" style="text-align: center;"><input id="1_input_elementform_id_temp1_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_5"></td></tr><tr id="1_element_tr2"><td id="1_element_td2_0" class="matrix_"><label id="1_label_elementform_id_temp2_0" class="ch_rad_label" for="1_elementform_id_temp2">Product is valuable</label></td><td id="1_element_td2_1" style="text-align: center;"><input id="1_input_elementform_id_temp2_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_1"></td><td id="1_element_td2_2" style="text-align: center;"><input id="1_input_elementform_id_temp2_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_2"></td><td id="1_element_td2_3" style="text-align: center;"><input id="1_input_elementform_id_temp2_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_3"></td><td id="1_element_td2_4" style="text-align: center;"><input id="1_input_elementform_id_temp2_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_4"></td><td id="1_element_td2_5" style="text-align: center;"><input id="1_input_elementform_id_temp2_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_5"></td></tr><tr id="1_element_tr3"><td id="1_element_td3_0" class="matrix_"><label id="1_label_elementform_id_temp3_0" class="ch_rad_label" for="1_elementform_id_temp3">Product is better<br> than other products on<br> the market</label></td><td id="1_element_td3_1" style="text-align: center;"><input id="1_input_elementform_id_temp3_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_1"></td><td id="1_element_td3_2" style="text-align: center;"><input id="1_input_elementform_id_temp3_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_2"></td><td id="1_element_td3_3" style="text-align: center;"><input id="1_input_elementform_id_temp3_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_3"></td><td id="1_element_td3_4" style="text-align: center;"><input id="1_input_elementform_id_temp3_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_4"></td><td id="1_element_td3_5" style="text-align: center;"><input id="1_input_elementform_id_temp3_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_5"></td></tr><tr id="1_element_tr4"><td id="1_element_td4_0" class="matrix_"><label id="1_label_elementform_id_temp4_0" class="ch_rad_label" for="1_elementform_id_temp4">Product is easy to use</label></td><td id="1_element_td4_1" style="text-align: center;"><input id="1_input_elementform_id_temp4_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_1"></td><td id="1_element_td4_2" style="text-align: center;"><input id="1_input_elementform_id_temp4_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_2"></td><td id="1_element_td4_3" style="text-align: center;"><input id="1_input_elementform_id_temp4_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_3"></td><td id="1_element_td4_4" style="text-align: center;"><input id="1_input_elementform_id_temp4_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_4"></td><td id="1_element_td4_5" style="text-align: center;"><input id="1_input_elementform_id_temp4_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_5"></td></tr></tbody></table><input id="1_hidden_rowform_id_temp" name="1_hidden_rowform_id_temp" type="hidden" value="Product is affordable***Product is valuable***Product is better&lt;br&gt; than other products on&lt;br&gt; the market***Product is easy to use***"><input id="1_row_idsform_id_temp" name="1_row_idsform_id_temp" type="hidden" value="1,2,3,4,"><input id="1_hidden_columnform_id_temp" name="1_hidden_columnform_id_temp" type="hidden" value="Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree***"><input id="1_column_idsform_id_temp" name="1_column_idsform_id_temp" type="hidden" value="1,2,3,4,5,"></td></tr></tbody></table></td><td id="X_1" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_1" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;1&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="3" type="type_scale_rating"><td colspan="2" id="3_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="3_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="3_label_sectionform_id_temp" class="wdform_scale_rating"><span id="3_element_labelform_id_temp" class="label">2. How likely are you to recommend [Product/Service] to a friend or co-worker?</span><span id="3_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="3_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="3_typeform_id_temp" id="3_typeform_id_temp"><input type="hidden" value="no" name="3_requiredform_id_temp" id="3_requiredform_id_temp"><input type="hidden" value="5" id="3_scale_amountform_id_temp" name="3_scale_amountform_id_temp"><div id="3_elementform_id_temp" style="float: left;"><label class="mini_label" id="3_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Will not recommend </label><table id="3_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="3_scale_tr1form_id_temp"><td id="3_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="3_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="3_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="3_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="3_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="3_scale_tr2form_id_temp"><td id="3_scale_td2_1form_id_temp"><input id="3_scale_radioform_id_temp_1" name="3_scale_radioform_id_temp" value="1" type="radio"></td><td id="3_scale_td2_2form_id_temp"><input id="3_scale_radioform_id_temp_2" name="3_scale_radioform_id_temp" value="2" type="radio"></td><td id="3_scale_td2_3form_id_temp"><input id="3_scale_radioform_id_temp_3" name="3_scale_radioform_id_temp" value="3" type="radio"></td><td id="3_scale_td2_4form_id_temp"><input id="3_scale_radioform_id_temp_4" name="3_scale_radioform_id_temp" value="4" type="radio"></td><td id="3_scale_td2_5form_id_temp"><input id="3_scale_radioform_id_temp_5" name="3_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="3_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> I will recommend</label></div></td></tr></tbody></table></td><td id="X_3" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_3" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="4" type="type_scale_rating"><td colspan="2" id="4_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="4_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="4_label_sectionform_id_temp" class="wdform_scale_rating"><span id="4_element_labelform_id_temp" class="label">3. How satisfied are you with this [Product/Service]?</span><span id="4_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="4_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="4_typeform_id_temp" id="4_typeform_id_temp"><input type="hidden" value="no" name="4_requiredform_id_temp" id="4_requiredform_id_temp"><input type="hidden" value="5" id="4_scale_amountform_id_temp" name="4_scale_amountform_id_temp"><div id="4_elementform_id_temp" style="float: left;"><label class="mini_label" id="4_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Not Satisfied </label><table id="4_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="4_scale_tr1form_id_temp"><td id="4_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="4_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="4_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="4_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="4_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="4_scale_tr2form_id_temp"><td id="4_scale_td2_1form_id_temp"><input id="4_scale_radioform_id_temp_1" name="4_scale_radioform_id_temp" value="1" type="radio"></td><td id="4_scale_td2_2form_id_temp"><input id="4_scale_radioform_id_temp_2" name="4_scale_radioform_id_temp" value="2" type="radio"></td><td id="4_scale_td2_3form_id_temp"><input id="4_scale_radioform_id_temp_3" name="4_scale_radioform_id_temp" value="3" type="radio"></td><td id="4_scale_td2_4form_id_temp"><input id="4_scale_radioform_id_temp_4" name="4_scale_radioform_id_temp" value="4" type="radio"></td><td id="4_scale_td2_5form_id_temp"><input id="4_scale_radioform_id_temp_5" name="4_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="4_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> Completely Satisfied</label></div></td></tr></tbody></table></td><td id="X_4" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_4" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;4&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="5" type="type_textarea"><td colspan="2" id="5_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="5_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">4. What would make you more satisfied with this [Product/Service]?</span><span id="5_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="5_element_sectionform_id_temp" class=""><input type="hidden" value="type_textarea" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="no" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><textarea class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" title="" value="" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 300px; height: 100px;"></textarea></td></tr></tbody></table></td><td id="X_5" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_5" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;5&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"><td id="page_numbersform_id_temp1" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">1/3</span></td><td valign="middle" align="right"><button id="page_next_1" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img1" style="float:right ;"><tr><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" onclick="show_or_hide(''1'')" onmouseover="chnage_icons_src(this,''minus'')" onmouseout="chnage_icons_src(this,''minus'')" id="show_page_img_1"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(''1'')" onmouseover="chnage_icons_src(this,''page_delete'')" onmouseout="chnage_icons_src(this,''page_delete'')"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(''1'')" onmouseover="chnage_icons_src(this,''page_delete_all'')" onmouseout="chnage_icons_src(this,''page_delete_all'')"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(''1'')" onmouseover="chnage_icons_src(this,''page_edit'')" onmouseout="chnage_icons_src(this,''page_edit'')"></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view2" page_title="Product Pricing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="6" type="type_radio"><td colspan="2" id="6_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="6_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="6_label_sectionform_id_temp" class=""><span id="6_element_labelform_id_temp" class="label">5. Do you feel our current price is merited by our product/service?</span><span id="6_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="6_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="6_typeform_id_temp" id="6_typeform_id_temp"><input type="hidden" value="no" name="6_requiredform_id_temp" id="6_requiredform_id_temp"><input type="hidden" value="no" name="6_randomizeform_id_temp" id="6_randomizeform_id_temp"><input type="hidden" value="no" name="6_allow_otherform_id_temp" id="6_allow_otherform_id_temp"><input type="hidden" value="1" name="6_rowcol_numform_id_temp" id="6_rowcol_numform_id_temp"><table><tbody id="6_table_little"><tr id="6_element_tr0"><td valign="top" id="6_td_little0" idi="0"><input type="radio" value="Yes, the price is about right" id="6_elementform_id_temp0" name="6_elementform_id_temp" onclick="set_default(''6'',''0'',''form_id_temp'')"><label id="6_label_element0" class="ch_rad_label" for="6_elementform_id_temp0">Yes, the price is about right</label></td></tr><tr id="6_element_tr1"><td valign="top" id="6_td_little1" idi="1"><input type="radio" value="No, the price is too low for your product" id="6_elementform_id_temp1" name="6_elementform_id_temp" onclick="set_default(''6'',''1'',''form_id_temp'')"><label id="6_label_element1" class="ch_rad_label" for="6_elementform_id_temp1">No, the price is too low for your product</label></td></tr><tr id="6_element_tr2"><td valign="top" id="6_td_little2" idi="2"><input type="radio" value="No, the price is to high for your product" id="6_elementform_id_temp2" name="6_elementform_id_temp" onclick="set_default(''6'',''2'',''form_id_temp'')"><label id="6_label_element2" class="ch_rad_label" for="6_elementform_id_temp2">No, the price is to high for your product</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_6" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_6" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;6&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="7" type="type_range"><td colspan="2" id="7_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="7_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">6. What is the amount you would every pay for a product like ours</span><span id="7_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="7_element_sectionform_id_temp" class=""><input type="hidden" value="type_range" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="no" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="30" name="7_range_widthform_id_temp" id="7_range_widthform_id_temp"><input type="hidden" value="1" name="7_range_stepform_id_temp" id="7_range_stepform_id_temp"><table id="7_elemet_table_littleform_id_temp"><tbody><tr><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp0" id="7_elementform_id_temp0" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp1" id="7_elementform_id_temp1" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td></tr><tr><td valign="top" align="left"><label class="mini_label" id="7_mini_label_from">From</label></td><td valign="top" align="left"><label class="mini_label" id="7_mini_label_to">To</label></td></tr></tbody></table></td></tr></tbody></table></td><td id="X_7" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_7" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;7&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="8" type="type_star_rating"><td valign="middle" align="left" id="8_label_sectionform_id_temp" class="wdform_star_rating"><span id="8_element_labelform_id_temp" class="label">7. Please rate the product </span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class="wdform_star_rating toolbar_padding"><input type="hidden" value="type_star_rating" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="10" id="8_star_amountform_id_temp" name="8_star_amountform_id_temp"><input type="hidden" value="yellow" name="8_star_colorform_id_temp" id="8_star_colorform_id_temp"><input type="hidden" value="" id="8_selected_star_amountform_id_temp" name="8_selected_star_amountform_id_temp"><div id="8_elementform_id_temp" class="wdform_star_rating"><img id="8_star_0" src="{$plugin_path}/images/star.png" onmouseover="change_src(0,8,''form_id_temp'')" onmouseout="reset_src(0,8)" onclick="select_star_rating(0,8,''form_id_temp'')"><img id="8_star_1" src="{$plugin_path}/images/star.png" onmouseover="change_src(1,8,''form_id_temp'')" onmouseout="reset_src(1,8)" onclick="select_star_rating(1,8,''form_id_temp'')"><img id="8_star_2" src="{$plugin_path}/images/star.png" onmouseover="change_src(2,8,''form_id_temp'')" onmouseout="reset_src(2,8)" onclick="select_star_rating(2,8,''form_id_temp'')"><img id="8_star_3" src="{$plugin_path}/images/star.png" onmouseover="change_src(3,8,''form_id_temp'')" onmouseout="reset_src(3,8)" onclick="select_star_rating(3,8,''form_id_temp'')"><img id="8_star_4" src="{$plugin_path}/images/star.png" onmouseover="change_src(4,8,''form_id_temp'')" onmouseout="reset_src(4,8)" onclick="select_star_rating(4,8,''form_id_temp'')"><img id="8_star_5" src="{$plugin_path}/images/star.png" onmouseover="change_src(5,8,''form_id_temp'')" onmouseout="reset_src(5,8)" onclick="select_star_rating(5,8,''form_id_temp'')"><img id="8_star_6" src="{$plugin_path}/images/star.png" onmouseover="change_src(6,8,''form_id_temp'')" onmouseout="reset_src(6,8)" onclick="select_star_rating(6,8,''form_id_temp'')"><img id="8_star_7" src="{$plugin_path}/images/star.png" onmouseover="change_src(7,8,''form_id_temp'')" onmouseout="reset_src(7,8)" onclick="select_star_rating(7,8,''form_id_temp'')"><img id="8_star_8" src="{$plugin_path}/images/star.png" onmouseover="change_src(8,8,''form_id_temp'')" onmouseout="reset_src(8,8)" onclick="select_star_rating(8,8,''form_id_temp'')"><img id="8_star_9" src="{$plugin_path}/images/star.png" onmouseover="change_src(9,8,''form_id_temp'')" onmouseout="reset_src(9,8)" onclick="select_star_rating(9,8,''form_id_temp'')"></div></td><td id="X_8" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_8" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;8&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav2"><td valign="middle" align="left"><button id="page_previous_2" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp2" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">2/3</span></td><td valign="middle" align="right"><button id="page_next_2" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img2" style="float: right;"><tr valign="middle"><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_2" onclick="show_or_hide(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;2&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view3" page_title="Reward Drawing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="9" type="type_submitter_mail"><td colspan="2" id="9_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="9_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.</span><span id="9_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="middle" align="left" id="9_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_sendform_id_temp" id="9_sendform_id_temp"><input type="hidden" value="" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><input type="text" class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" value="" title="" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px;"></td></tr></tbody></table></td><td id="X_9" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_9" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;9&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr><tr id="10" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="10_label_and_element_sectionform_id_temp"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class="" style="display: none;"><span id="10_element_labelform_id_temp" style="display: none;">type_submit_reset_10</span></td><td valign="middle" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="10_typeform_id_temp" id="10_typeform_id_temp"><button type="button" class="button_submit" id="10_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="10_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td><td id="X_10" valign="middle" align="right" class="element_toolbar"><img src="{$plugin_path}/images/delete_el.png" title="Remove the field" onclick="remove_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;delete_el&quot;)" onmouseout="chnage_icons_src(this,&quot;delete_el&quot;)" style="cursor: pointer; margin: 2px;"></td><td id="left_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/left.png" title="Move the field to the left" onclick="left_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;left&quot;)" onmouseout="chnage_icons_src(this,&quot;left&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/up.png" title="Move the field up" onclick="up_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;up&quot;)" onmouseout="chnage_icons_src(this,&quot;up&quot;)" style="cursor: pointer;"></td><td id="down_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/down.png" title="Move the field down" onclick="down_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;down&quot;)" onmouseout="chnage_icons_src(this,&quot;down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="right_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/right.png" title="Move the field to the right" onclick="right_row(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;right&quot;)" onmouseout="chnage_icons_src(this,&quot;right&quot;)" style="cursor: pointer;"></td><td id="edit_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/edit.png" title="Edit the field" onclick="edit(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;edit&quot;)" onmouseout="chnage_icons_src(this,&quot;edit&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/dublicate.png" title="Dublicate the field" onclick="dublicate(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;dublicate&quot;)" onmouseout="chnage_icons_src(this,&quot;dublicate&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="dublicate_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_down.png" title="Move the field to the lower page" onclick="page_down(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_down&quot;)" onmouseout="chnage_icons_src(this,&quot;page_down&quot;)" style="margin: 2px; cursor: pointer;"></td><td id="page_up_10" valign="middle" class="element_toolbar"><img src="{$plugin_path}/images/page_up.png" title="Move the field to the upper page" onclick="page_up(&quot;10&quot;)" onmouseover="chnage_icons_src(this,&quot;page_up&quot;)" onmouseout="chnage_icons_src(this,&quot;page_up&quot;)" style="margin: 2px; cursor: pointer;"></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav3"><td valign="middle" align="left"><button id="page_previous_3" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp3" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">3/3</span></td></tr></tbody></table></td></tr></tbody><tbody id="form_id_tempform_view_img3" style="float: right;"><tr valign="middle"><td width="0%"></td><td align="right"><img src="{$plugin_path}/images/minus.png" title="Show or hide the page" class="page_toolbar" id="show_page_img_3" onclick="show_or_hide(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;minus&quot;)" onmouseout="chnage_icons_src(this,&quot;minus&quot;)"></td><td><img src="{$plugin_path}/images/page_delete.png" title="Delete the page" class="page_toolbar" onclick="remove_page(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete&quot;)"></td><td><img src="{$plugin_path}/images/page_delete_all.png" title="Delete the page with fields" class="page_toolbar" onclick="remove_page_all(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_delete_all&quot;)" onmouseout="chnage_icons_src(this,&quot;page_delete_all&quot;)"></td><td><img src="{$plugin_path}/images/page_edit.png" title="Edit the page" class="page_toolbar" onclick="edit_page_break(&quot;3&quot;)" onmouseover="chnage_icons_src(this,&quot;page_edit&quot;)" onmouseout="chnage_icons_src(this,&quot;page_edit&quot;)"></td></tr></tbody></table>', '<table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view1" class="wdform_tbody1" page_title="Product Rating" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr id="2" class="wdform_tr_section_break" type="type_section_break"><td id="2_element_sectionform_id_temp" align="left" valign="top" colspan="100" class="toolbar_padding"><h1 class="sg-title" style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;" data-mce-style="font-size: 2.2em; color: #fff; font-weight: normal; line-height: normal;">Product Survey</h1></td></tr><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="1" type="type_matrix"><td colspan="2" id="1_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="1_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="1_label_sectionform_id_temp" class="wdform_matrix"><span id="1_element_labelform_id_temp" class="label">1. Please indicate if you agree or disagree with the following statements</span><span id="1_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="1_element_sectionform_id_temp" class="wdform_matrix"><input type="hidden" value="type_matrix" name="1_typeform_id_temp" id="1_typeform_id_temp"><input type="hidden" value="no" name="1_requiredform_id_temp" id="1_requiredform_id_temp"><input type="hidden" value="radio" name="1_input_typeform_id_temp" id="1_input_typeform_id_temp"><table id="1_elementform_id_temp"><tbody id="1_table_little"><tr id="1_element_tr0"><td id="1_element_td0_0"></td><td id="1_element_td0_1" class="matrix_" style="\r\n text-align: center;\r\n"><label id="1_label_elementform_id_temp0_1" name="1_label_elementform_id_temp0_1" class="ch_rad_label" for="1_elementform_id_temp1">Strongly Disagree</label></td><td id="1_element_td0_2" class="matrix_"><label id="1_label_elementform_id_temp0_2" name="1_label_elementform_id_temp0_2" class="ch_rad_label" for="1_elementform_id_temp2">Disagree</label></td><td id="1_element_td0_3" class="matrix_"><label id="1_label_elementform_id_temp0_3" name="1_label_elementform_id_temp0_3" class="ch_rad_label" for="1_elementform_id_temp3">Neutral</label></td><td id="1_element_td0_4" class="matrix_"><label id="1_label_elementform_id_temp0_4" name="1_label_elementform_id_temp0_4" class="ch_rad_label" for="1_elementform_id_temp4">Agree</label></td><td id="1_element_td0_5" class="matrix_"><label id="1_label_elementform_id_temp0_5" name="1_label_elementform_id_temp0_5" class="ch_rad_label" for="1_elementform_id_temp5">Strongly Agree</label></td></tr><tr id="1_element_tr1"><td id="1_element_td1_0" class="matrix_"><label id="1_label_elementform_id_temp1_0" class="ch_rad_label" for="1_elementform_id_temp1">Product is affordable</label></td><td id="1_element_td1_1" style="text-align: center;" align="center"><input id="1_input_elementform_id_temp1_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_1"></td><td id="1_element_td1_2" style="text-align: center;"><input id="1_input_elementform_id_temp1_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_2"></td><td id="1_element_td1_3" style="text-align: center;"><input id="1_input_elementform_id_temp1_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_3"></td><td id="1_element_td1_4" style="text-align: center;"><input id="1_input_elementform_id_temp1_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_4"></td><td id="1_element_td1_5" style="text-align: center;"><input id="1_input_elementform_id_temp1_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp1" value="1_5"></td></tr><tr id="1_element_tr2"><td id="1_element_td2_0" class="matrix_"><label id="1_label_elementform_id_temp2_0" class="ch_rad_label" for="1_elementform_id_temp2">Product is valuable</label></td><td id="1_element_td2_1" style="text-align: center;"><input id="1_input_elementform_id_temp2_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_1"></td><td id="1_element_td2_2" style="text-align: center;"><input id="1_input_elementform_id_temp2_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_2"></td><td id="1_element_td2_3" style="text-align: center;"><input id="1_input_elementform_id_temp2_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_3"></td><td id="1_element_td2_4" style="text-align: center;"><input id="1_input_elementform_id_temp2_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_4"></td><td id="1_element_td2_5" style="text-align: center;"><input id="1_input_elementform_id_temp2_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp2" value="2_5"></td></tr><tr id="1_element_tr3"><td id="1_element_td3_0" class="matrix_"><label id="1_label_elementform_id_temp3_0" class="ch_rad_label" for="1_elementform_id_temp3">Product is better<br> than other products on<br> the market</label></td><td id="1_element_td3_1" style="text-align: center;"><input id="1_input_elementform_id_temp3_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_1"></td><td id="1_element_td3_2" style="text-align: center;"><input id="1_input_elementform_id_temp3_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_2"></td><td id="1_element_td3_3" style="text-align: center;"><input id="1_input_elementform_id_temp3_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_3"></td><td id="1_element_td3_4" style="text-align: center;"><input id="1_input_elementform_id_temp3_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_4"></td><td id="1_element_td3_5" style="text-align: center;"><input id="1_input_elementform_id_temp3_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp3" value="3_5"></td></tr><tr id="1_element_tr4"><td id="1_element_td4_0" class="matrix_"><label id="1_label_elementform_id_temp4_0" class="ch_rad_label" for="1_elementform_id_temp4">Product is easy to use</label></td><td id="1_element_td4_1" style="text-align: center;"><input id="1_input_elementform_id_temp4_1" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_1"></td><td id="1_element_td4_2" style="text-align: center;"><input id="1_input_elementform_id_temp4_2" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_2"></td><td id="1_element_td4_3" style="text-align: center;"><input id="1_input_elementform_id_temp4_3" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_3"></td><td id="1_element_td4_4" style="text-align: center;"><input id="1_input_elementform_id_temp4_4" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_4"></td><td id="1_element_td4_5" style="text-align: center;"><input id="1_input_elementform_id_temp4_5" align="center" size="14" type="radio" name="1_input_elementform_id_temp4" value="4_5"></td></tr></tbody></table><input id="1_hidden_rowform_id_temp" name="1_hidden_rowform_id_temp" type="hidden" value="Product is affordable***Product is valuable***Product is better&lt;br&gt; than other products on&lt;br&gt; the market***Product is easy to use***"><input id="1_row_idsform_id_temp" name="1_row_idsform_id_temp" type="hidden" value="1,2,3,4,"><input id="1_hidden_columnform_id_temp" name="1_hidden_columnform_id_temp" type="hidden" value="Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree***"><input id="1_column_idsform_id_temp" name="1_column_idsform_id_temp" type="hidden" value="1,2,3,4,5,"></td></tr></tbody></table></td></tr><tr id="3" type="type_scale_rating"><td colspan="2" id="3_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="3_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="3_label_sectionform_id_temp" class="wdform_scale_rating"><span id="3_element_labelform_id_temp" class="label">2. How likely are you to recommend [Product/Service] to a friend or co-worker?</span><span id="3_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="3_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="3_typeform_id_temp" id="3_typeform_id_temp"><input type="hidden" value="no" name="3_requiredform_id_temp" id="3_requiredform_id_temp"><input type="hidden" value="5" id="3_scale_amountform_id_temp" name="3_scale_amountform_id_temp"><div id="3_elementform_id_temp" style="float: left;"><label class="mini_label" id="3_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Will not recommend </label><table id="3_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="3_scale_tr1form_id_temp"><td id="3_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="3_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="3_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="3_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="3_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="3_scale_tr2form_id_temp"><td id="3_scale_td2_1form_id_temp"><input id="3_scale_radioform_id_temp_1" name="3_scale_radioform_id_temp" value="1" type="radio"></td><td id="3_scale_td2_2form_id_temp"><input id="3_scale_radioform_id_temp_2" name="3_scale_radioform_id_temp" value="2" type="radio"></td><td id="3_scale_td2_3form_id_temp"><input id="3_scale_radioform_id_temp_3" name="3_scale_radioform_id_temp" value="3" type="radio"></td><td id="3_scale_td2_4form_id_temp"><input id="3_scale_radioform_id_temp_4" name="3_scale_radioform_id_temp" value="4" type="radio"></td><td id="3_scale_td2_5form_id_temp"><input id="3_scale_radioform_id_temp_5" name="3_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="3_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> I will recommend</label></div></td></tr></tbody></table></td></tr><tr id="4" type="type_scale_rating"><td colspan="2" id="4_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="4_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="4_label_sectionform_id_temp" class="wdform_scale_rating"><span id="4_element_labelform_id_temp" class="label">3. How satisfied are you with this [Product/Service]?</span><span id="4_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="4_element_sectionform_id_temp" class="wdform_scale_rating"><input type="hidden" value="type_scale_rating" name="4_typeform_id_temp" id="4_typeform_id_temp"><input type="hidden" value="no" name="4_requiredform_id_temp" id="4_requiredform_id_temp"><input type="hidden" value="5" id="4_scale_amountform_id_temp" name="4_scale_amountform_id_temp"><div id="4_elementform_id_temp" style="float: left;"><label class="mini_label" id="4_mini_label_worst" style="position: relative; top: 6px; font-size: 11px;">Not Satisfied </label><table id="4_scale_tableform_id_temp" style="display: inline-table;"><tbody><tr id="4_scale_tr1form_id_temp"><td id="4_scale_td1_1form_id_temp" style="text-align: center;"><span>1</span></td><td id="4_scale_td1_2form_id_temp" style="text-align: center;"><span>2</span></td><td id="4_scale_td1_3form_id_temp" style="text-align: center;"><span>3</span></td><td id="4_scale_td1_4form_id_temp" style="text-align: center;"><span>4</span></td><td id="4_scale_td1_5form_id_temp" style="text-align: center;"><span>5</span></td></tr><tr id="4_scale_tr2form_id_temp"><td id="4_scale_td2_1form_id_temp"><input id="4_scale_radioform_id_temp_1" name="4_scale_radioform_id_temp" value="1" type="radio"></td><td id="4_scale_td2_2form_id_temp"><input id="4_scale_radioform_id_temp_2" name="4_scale_radioform_id_temp" value="2" type="radio"></td><td id="4_scale_td2_3form_id_temp"><input id="4_scale_radioform_id_temp_3" name="4_scale_radioform_id_temp" value="3" type="radio"></td><td id="4_scale_td2_4form_id_temp"><input id="4_scale_radioform_id_temp_4" name="4_scale_radioform_id_temp" value="4" type="radio"></td><td id="4_scale_td2_5form_id_temp"><input id="4_scale_radioform_id_temp_5" name="4_scale_radioform_id_temp" value="5" type="radio"></td></tr></tbody></table><label class="mini_label" id="4_mini_label_best" style="position: relative; top: 6px; font-size: 11px;"> Completely Satisfied</label></div></td></tr></tbody></table></td></tr><tr id="5" type="type_textarea"><td colspan="2" id="5_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="5_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="5_label_sectionform_id_temp" class=""><span id="5_element_labelform_id_temp" class="label">4. What would make you more satisfied with this [Product/Service]?</span><span id="5_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="5_element_sectionform_id_temp" class=""><input type="hidden" value="type_textarea" name="5_typeform_id_temp" id="5_typeform_id_temp"><input type="hidden" value="no" name="5_requiredform_id_temp" id="5_requiredform_id_temp"><input type="hidden" value="no" name="5_uniqueform_id_temp" id="5_uniqueform_id_temp"><textarea class="input_deactive" id="5_elementform_id_temp" name="5_elementform_id_temp" title="" value="" onfocus="delete_value(''5_elementform_id_temp'')" onblur="return_value(''5_elementform_id_temp'')" onchange="change_value(''5_elementform_id_temp'')" style="width: 300px; height: 100px;"></textarea></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr class="wdform_footer"><td colspan="100" valign="top"><table width="100%" style="padding-right:170px"><tbody><tr id="form_id_temppage_nav1"><td id="page_numbersform_id_temp1" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">1/3</span></td><td valign="middle" align="right"><button id="page_next_1" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view2" page_title="Product Pricing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="6" type="type_radio"><td colspan="2" id="6_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="6_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="6_label_sectionform_id_temp" class=""><span id="6_element_labelform_id_temp" class="label">5. Do you feel our current price is merited by our product/service?</span><span id="6_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="6_element_sectionform_id_temp" class=""><input type="hidden" value="type_radio" name="6_typeform_id_temp" id="6_typeform_id_temp"><input type="hidden" value="no" name="6_requiredform_id_temp" id="6_requiredform_id_temp"><input type="hidden" value="no" name="6_randomizeform_id_temp" id="6_randomizeform_id_temp"><input type="hidden" value="no" name="6_allow_otherform_id_temp" id="6_allow_otherform_id_temp"><input type="hidden" value="1" name="6_rowcol_numform_id_temp" id="6_rowcol_numform_id_temp"><table><tbody id="6_table_little"><tr id="6_element_tr0"><td valign="top" id="6_td_little0" idi="0"><input type="radio" value="Yes, the price is about right" id="6_elementform_id_temp0" name="6_elementform_id_temp" onclick="set_default(''6'',''0'',''form_id_temp'')"><label id="6_label_element0" class="ch_rad_label" for="6_elementform_id_temp0">Yes, the price is about right</label></td></tr><tr id="6_element_tr1"><td valign="top" id="6_td_little1" idi="1"><input type="radio" value="No, the price is too low for your product" id="6_elementform_id_temp1" name="6_elementform_id_temp" onclick="set_default(''6'',''1'',''form_id_temp'')"><label id="6_label_element1" class="ch_rad_label" for="6_elementform_id_temp1">No, the price is too low for your product</label></td></tr><tr id="6_element_tr2"><td valign="top" id="6_td_little2" idi="2"><input type="radio" value="No, the price is to high for your product" id="6_elementform_id_temp2" name="6_elementform_id_temp" onclick="set_default(''6'',''2'',''form_id_temp'')"><label id="6_label_element2" class="ch_rad_label" for="6_elementform_id_temp2">No, the price is to high for your product</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="7" type="type_range"><td colspan="2" id="7_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="7_elemet_tableform_id_temp"><tbody><tr><td valign="top" align="left" id="7_label_sectionform_id_temp" class=""><span id="7_element_labelform_id_temp" class="label">6. What is the amount you would every pay for a product like ours</span><span id="7_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="top" align="left" id="7_element_sectionform_id_temp" class=""><input type="hidden" value="type_range" name="7_typeform_id_temp" id="7_typeform_id_temp"><input type="hidden" value="no" name="7_requiredform_id_temp" id="7_requiredform_id_temp"><input type="hidden" value="30" name="7_range_widthform_id_temp" id="7_range_widthform_id_temp"><input type="hidden" value="1" name="7_range_stepform_id_temp" id="7_range_stepform_id_temp"><table id="7_elemet_table_littleform_id_temp"><tbody><tr><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp0" id="7_elementform_id_temp0" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td><td valign="middle" align="left"><span class="ui-spinner ui-widget ui-widget-content ui-corner-all"><input type="" value="" name="7_elementform_id_temp1" id="7_elementform_id_temp1" onkeypress="return check_isnum_or_minus(event)" style="width: 30px;" class="ui-spinner-input" autocomplete="off" role="spinbutton"><a class="ui-spinner-button ui-spinner-up ui-corner-tr ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-n">▲</span></span></a><a class="ui-spinner-button ui-spinner-down ui-corner-br ui-button ui-widget ui-state-default ui-button-text-only" tabindex="-1" role="button" aria-disabled="false"><span class="ui-button-text"><span class="ui-icon ui-icon-triangle-1-s">▼</span></span></a></span></td></tr><tr><td valign="top" align="left"><label class="mini_label" id="7_mini_label_from">From</label></td><td valign="top" align="left"><label class="mini_label" id="7_mini_label_to">To</label></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr id="8" type="type_star_rating"><td valign="middle" align="left" id="8_label_sectionform_id_temp" class="wdform_star_rating"><span id="8_element_labelform_id_temp" class="label">7. Please rate the product </span><span id="8_required_elementform_id_temp" class="required"></span></td><td valign="top" align="left" id="8_element_sectionform_id_temp" class="wdform_star_rating toolbar_padding"><input type="hidden" value="type_star_rating" name="8_typeform_id_temp" id="8_typeform_id_temp"><input type="hidden" value="no" name="8_requiredform_id_temp" id="8_requiredform_id_temp"><input type="hidden" value="10" id="8_star_amountform_id_temp" name="8_star_amountform_id_temp"><input type="hidden" value="yellow" name="8_star_colorform_id_temp" id="8_star_colorform_id_temp"><input type="hidden" value="" id="8_selected_star_amountform_id_temp" name="8_selected_star_amountform_id_temp"><div id="8_elementform_id_temp" class="wdform_star_rating"><img id="8_star_0" src="{$plugin_path}/images/star.png" onmouseover="change_src(0,8,''form_id_temp'')" onmouseout="reset_src(0,8)" onclick="select_star_rating(0,8,''form_id_temp'')"><img id="8_star_1" src="{$plugin_path}/images/star.png" onmouseover="change_src(1,8,''form_id_temp'')" onmouseout="reset_src(1,8)" onclick="select_star_rating(1,8,''form_id_temp'')"><img id="8_star_2" src="{$plugin_path}/images/star.png" onmouseover="change_src(2,8,''form_id_temp'')" onmouseout="reset_src(2,8)" onclick="select_star_rating(2,8,''form_id_temp'')"><img id="8_star_3" src="{$plugin_path}/images/star.png" onmouseover="change_src(3,8,''form_id_temp'')" onmouseout="reset_src(3,8)" onclick="select_star_rating(3,8,''form_id_temp'')"><img id="8_star_4" src="{$plugin_path}/images/star.png" onmouseover="change_src(4,8,''form_id_temp'')" onmouseout="reset_src(4,8)" onclick="select_star_rating(4,8,''form_id_temp'')"><img id="8_star_5" src="{$plugin_path}/images/star.png" onmouseover="change_src(5,8,''form_id_temp'')" onmouseout="reset_src(5,8)" onclick="select_star_rating(5,8,''form_id_temp'')"><img id="8_star_6" src="{$plugin_path}/images/star.png" onmouseover="change_src(6,8,''form_id_temp'')" onmouseout="reset_src(6,8)" onclick="select_star_rating(6,8,''form_id_temp'')"><img id="8_star_7" src="{$plugin_path}/images/star.png" onmouseover="change_src(7,8,''form_id_temp'')" onmouseout="reset_src(7,8)" onclick="select_star_rating(7,8,''form_id_temp'')"><img id="8_star_8" src="{$plugin_path}/images/star.png" onmouseover="change_src(8,8,''form_id_temp'')" onmouseout="reset_src(8,8)" onclick="select_star_rating(8,8,''form_id_temp'')"><img id="8_star_9" src="{$plugin_path}/images/star.png" onmouseover="change_src(9,8,''form_id_temp'')" onmouseout="reset_src(9,8)" onclick="select_star_rating(9,8,''form_id_temp'')"></div></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav2"><td valign="middle" align="left"><button id="page_previous_2" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp2" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">2/3</span></td><td valign="middle" align="right"><button id="page_next_2" type="button" class="wdform_page_button" style="cursor: pointer;">Next</button></td></tr></tbody></table></td></tr></tbody></table> <table cellpadding="4" cellspacing="0" class="wdform_table1" style="border-width: 1px; border-top-style: solid; border-top-color: black;"><tbody id="form_id_tempform_view3" page_title="Reward Drawing" class="wdform_tbody1" next_title="Next" next_type="button" next_class="wdform_page_button" next_checkable="false" previous_title="Previous" previous_type="button" previous_class="wdform_page_button" previous_checkable="false"><tr class="wdform_tr1"><td class="wdform_td1"><table class="wdform_table2"><tbody class="wdform_tbody2"><tr id="9" type="type_submitter_mail"><td colspan="2" id="9_label_and_element_sectionform_id_temp" class="toolbar_padding"><table id="9_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="9_label_sectionform_id_temp" class=""><span id="9_element_labelform_id_temp" class="label">8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.</span><span id="9_required_elementform_id_temp" class="required"></span></td></tr><tr><td valign="middle" align="left" id="9_element_sectionform_id_temp" class=""><input type="hidden" value="type_submitter_mail" name="9_typeform_id_temp" id="9_typeform_id_temp"><input type="hidden" value="no" name="9_requiredform_id_temp" id="9_requiredform_id_temp"><input type="hidden" value="no" name="9_sendform_id_temp" id="9_sendform_id_temp"><input type="hidden" value="" name="9_uniqueform_id_temp" id="9_uniqueform_id_temp"><input type="text" class="input_deactive" id="9_elementform_id_temp" name="9_elementform_id_temp" value="" title="" onfocus="delete_value(''9_elementform_id_temp'')" onblur="return_value(''9_elementform_id_temp'')" onchange="change_value(''9_elementform_id_temp'')" style="width: 200px;"></td></tr></tbody></table></td></tr><tr id="10" type="type_submit_reset"><td colspan="2" class="toolbar_padding" id="10_label_and_element_sectionform_id_temp"><table id="10_elemet_tableform_id_temp"><tbody><tr><td valign="middle" align="left" id="10_label_sectionform_id_temp" class="" style="display: none;"><span id="10_element_labelform_id_temp" style="display: none;">type_submit_reset_10</span></td><td valign="middle" align="left" id="10_element_sectionform_id_temp" class=""><input type="hidden" value="type_submit_reset" name="10_typeform_id_temp" id="10_typeform_id_temp"><button type="button" class="button_submit" id="10_element_submitform_id_temp" value="Submit" onclick="check_required(''submit'', ''form_id_temp'');">Submit</button><button type="button" class="button_reset" id="10_element_resetform_id_temp" value="Reset" onclick="check_required(''reset'');" style="display: none;">Reset</button></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr valign="top" class="wdform_footer"><td colspan="100"><table width="100%"><tbody><tr id="form_id_temppage_nav3"><td valign="middle" align="left"><button id="page_previous_3" type="button" class="wdform_page_button" style="cursor: pointer;">Previous</button></td><td id="page_numbersform_id_temp3" width="100%" valign="middle" align="center"><span class="page_numbersform_id_temp">3/3</span></td></tr></tbody></table></td></tr></tbody></table>', 36, '// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}', '<p><span style="color: #16191e; font-family: Georgia, ''Times New Roman'', serif, sans-serif; font-size: small; line-height: 18px;">Thank you for taking our survey. Your response is very important to us.</span></p>', 'Thank you for taking our survey. Your response is very important to us.', 3, '<p>%all%</p>', '<p>%all%</p>', 11, '1#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. How satisfied are you with this [Product/Service]?#**label**#type_scale_rating#****#5#**id**#4. What would make you more satisfied with this [Product/Service]?#**label**#type_textarea#****#6#**id**#5. Do you feel our current price is merited by our product/service?#**label**#type_radio#****#7#**id**#6. What is the amount you would every pay for a product like ours#**label**#type_range#****#8#**id**#7. Please rate the product #**label**#type_star_rating#****#9#**id**#8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.#**label**#type_submitter_mail#****#10#**id**#type_submit_reset_10#**label**#type_submit_reset#****##**id**##**label**##****#', '1#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. How satisfied are you with this [Product/Service]?#**label**#type_scale_rating#****#5#**id**#4. What would make you more satisfied with this [Product/Service]?#**label**#type_textarea#****#6#**id**#5. Do you feel our current price is merited by our product/service?#**label**#type_radio#****#7#**id**#6. What is the amount you would every pay for a product like ours#**label**#type_range#****#8#**id**#7. Please rate the product #**label**#type_star_rating#****#9#**id**#8. Thank you for taking our survey. Your survey is almost complete, please enter your email address in the box below if you wish to participate in our drawing, then press the ''Submit'' button.#**label**#type_submitter_mail#****#10#**id**#type_submit_reset_10#**label**#type_submit_reset#****#', 0, 'percentage', 'true', 'true', '', '', '', 0, 'testmode', '', 'USD', 0, '', '', '', '', '', '');
644
  HEREQUERYFORM;
645
  $wpdb->query($form_maker_rows10);
646
  $wpdb->query($form_maker_rows11);
frontend/views/FMViewForm_maker.php CHANGED
@@ -1406,14 +1406,14 @@ class FMViewForm_maker {
1406
  $rep.='
1407
  </div>
1408
  <div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.($param['w_size']+65).'px;">
1409
- <div style="display: table-cell;vertical-align: middle;">
1410
  <div><input type="text" class="'.$input_active.'" id="wdform_'.$id1.'_element_first'.$form_id.'" name="wdform_'.$id1.'_element_first'.$form_id.'" value="'.$w_first_val[0].'" title="'.$w_title[0].'" style="width: 50px;" '.$param['attributes'].'></div>
1411
  <div><label class="mini_label">'.$w_mini_labels[0].'</label></div>
1412
  </div>
1413
- <div style="display: table-cell;vertical-align: middle;">
1414
  <div class="wdform_line" style="margin: 0px 4px 10px 4px; padding: 0px;">-</div>
1415
  </div>
1416
- <div style="display: table-cell;vertical-align: middle; width:100%;">
1417
  <div><input type="text" class="'.$input_active.'" id="wdform_'.$id1.'_element_last'.$form_id.'" name="wdform_'.$id1.'_element_last'.$form_id.'" value="'.$w_first_val[1].'" title="'.$w_title[1].'" style="width: 100%;" '.$param['attributes'].'></div>
1418
  <div><label class="mini_label">'.$w_mini_labels[1].'</label></div>
1419
  </div>
1406
  $rep.='
1407
  </div>
1408
  <div class="wdform-element-section '.$param['w_class'].'" style="'.$param['w_field_label_pos2'].' width: '.($param['w_size']+65).'px;">
1409
+ <div style="display: table-cell;">
1410
  <div><input type="text" class="'.$input_active.'" id="wdform_'.$id1.'_element_first'.$form_id.'" name="wdform_'.$id1.'_element_first'.$form_id.'" value="'.$w_first_val[0].'" title="'.$w_title[0].'" style="width: 50px;" '.$param['attributes'].'></div>
1411
  <div><label class="mini_label">'.$w_mini_labels[0].'</label></div>
1412
  </div>
1413
+ <div style="display: table-cell;">
1414
  <div class="wdform_line" style="margin: 0px 4px 10px 4px; padding: 0px;">-</div>
1415
  </div>
1416
+ <div style="display: table-cell; width:100%;">
1417
  <div><input type="text" class="'.$input_active.'" id="wdform_'.$id1.'_element_last'.$form_id.'" name="wdform_'.$id1.'_element_last'.$form_id.'" value="'.$w_first_val[1].'" title="'.$w_title[1].'" style="width: 100%;" '.$param['attributes'].'></div>
1418
  <div><label class="mini_label">'.$w_mini_labels[1].'</label></div>
1419
  </div>
js/form_maker_manage.js CHANGED
@@ -494,15 +494,17 @@ function form_maker_options_tabs(id) {
494
  }
495
 
496
  function codemirror_for_javascript() {
497
- var editor = CodeMirror.fromTextArea(document.getElementById("form_javascript"), {
498
- lineNumbers: true,
499
- lineWrapping: true,
500
- mode: "javascript"
501
- });
502
-
503
- CodeMirror.commands["selectAll"](editor);
504
- editor.autoFormatRange(editor.getCursor(true), editor.getCursor(false));
505
- editor.scrollTo(0,0);
 
 
506
  }
507
 
508
  function set_type(type) {
494
  }
495
 
496
  function codemirror_for_javascript() {
497
+ if (!jQuery("#form_javascript").next().length) {
498
+ var editor = CodeMirror.fromTextArea(document.getElementById("form_javascript"), {
499
+ lineNumbers: true,
500
+ lineWrapping: true,
501
+ mode: "javascript"
502
+ });
503
+
504
+ CodeMirror.commands["selectAll"](editor);
505
+ editor.autoFormatRange(editor.getCursor(true), editor.getCursor(false));
506
+ editor.scrollTo(0,0);
507
+ }
508
  }
509
 
510
  function set_type(type) {
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Form ===
2
  Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-form.html
4
- Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form, contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql, paypal
5
  Requires at least: 3.4
6
- Tested up to: 4.4
7
- Stable tag: 1.8.33
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -366,6 +366,9 @@ Email field should be used since it verifies that an entry format fulfills examp
366
 
367
  == Changelog ==
368
 
 
 
 
369
  = 1.8.33 =
370
  Fixed: Bug in Address field
371
  Fixed: Bug with Additional Attributes in Email field
1
  === Form ===
2
  Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-form.html
4
+ Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form, contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha, pdf, mysql, paypal, ReCaptcha
5
  Requires at least: 3.4
6
+ Tested up to: 4.5
7
+ Stable tag: 1.8.34
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
366
 
367
  == Changelog ==
368
 
369
+ = 1.8.34 =
370
+ Fixed: Some minor style issues
371
+
372
  = 1.8.33 =
373
  Fixed: Bug in Address field
374
  Fixed: Bug with Additional Attributes in Email field