/*
	CONTACTFORM.JS 1.0 USER SETTINGS
	download at: http://acidmartin.wemakesites.net/?pageId=ContactFormJs
	created by: Martin Ivanov
	email: acid_martin@yahoo.com, martin@acidmartin.com
	personal website: http://acidmartin.wemakesites.net/
	portfolio: http://wemakesites.net
	
	IMPORTANT REGULATIONS:
	
	1. IF YOU ARE USING THE OBFUSCATED VERSION OF CONTACTFORM.JS, IT IS FORBIDDEN TO DEOBFUSCATE AND MODIFY THIS SRCIPT WITHOUT AUTHOR'S WRITTEN PERMISSION. OTHERWISE SUCH ACTIONS WILL BE CONSIDERED VIOLATIONS OF THE COPYRIGHT LAWS AND LEGAL STEPS WILL BE TAKEN.
	
	2. IF YOU HAVE PURCHASED THE SOURCE CODE OF CONTACTFORM.JS, YOU CANNOT USE THIS SCRIPT ON WEBPAGES WITHOUT
	OBFUSCATING IT. OTHERWISE SUCH ACTIONS WILL BE CONSIDERED VIOLATIONS OF THE COPYRIGHT LAWS AND LEGAL STEPS WILL BE TAKEN.
*/

/* Please, refer to USING_THE_SCRIPT.pdf when modifying these properties */

/* general settings */
var contactformenabled = true; // enable or disable ContactForm.JS - "true" or "false"
var contactformroot = 'Scripts'; // scripts root folder
var contactformskin = 'AcidMartin2009' // reservation form skin
var contactformwidth = '480'; // reservation form width

/* input settings */
var rounded_corners_enabled = true; // enable or disable rounded corners for input boxes - "true" or "false"
var inputs_width = '280'; // enable or disable rounded corners for input boxes
var comments_box_height = '100'; // height of the "comments" textbox
var dropdowns_width = '279'; // width of the dropdowns
var dropdownheight = '200'; // height of the dropdowns list boxes
var messagemaxlength = '256'; // max length of the message box. use "auto" if there is no max length

/* text string strings */
var contact_form_name_label = 'Name'; // person's first name label
var contact_form_email_label = 'Email'; // email label
var contact_form_website_label = 'Website'; // person's last name label
var message_label = 'Comments'; // additional notes label
var submit_form_button_text = 'Submit Contact Form'; // "submit" button text
var contact_form_submitted = 'the contact form has been submitted'; // message that will be displayed when the reservation form has been processed
var new_security_code_label = 'new security code'; // "create new security code" string
var security_code_instructions = 'Please, type the security code on the left in the textbox next to it.'; // security code instrucions that can contain HTML

/* "where did you hear about us" dropdown */
var where_did_you_hear_about_us_label = 'How did you find me';
var where_did_you_hear_about_us_please_select = 'choose one...';
var where_did_you_hear_about_us_array = new Array('Search engine', 'Recommended by friend', 'Link from other website', 'Advertisement', 'Other');

/* "country" dropdown */
var your_country_label = 'Subject';
var your_country_label_please_select = where_did_you_hear_about_us_please_select;
var countries_list = new Array('Feedback', 'Question', 'Creative Web 2.0 Bundle', 'Custom Development', 'Testimonial', 'Purchase', 'Purchase Issue', 'Purchase of Source Code', 'Refunds and Claims', 'Music', 'Forms.JS', 'Dialogs.JS', 'Gallery.XML', 'Acid.RSS', 'Acid.JS Web 2.0 Component Library', 'JavaScript Routines', 'ContactForm.JS', 'AJAX Hotel Reservation Form', 'Guestbook.XML', 'Web 2.0 AJAX Loading Panel', 'ColorPicker.JS', 'EULA.XML', 'SpinBox.JS', 'ContextMenu.XML', 'Skinnable Web 2.0 Buttons', 'Rounded Corners Panel', 'TabStrip.XML', 'TinySite.XML CMS');

/* which inputs will be visible */
var inpt_name = true; // name input  - "true" or "false"
var inpt_email = true; // email input - "true" or "false"
var inpt_website = true; // website input - "true" or "false"
var where_did_you_hear_about_us_input_enabled = false; // where did you hear about us dropdown - "true" or "false"
var countries_input_enabled = true; // where are you from dropdown - "true" or "false"
var comments_enabled = true; // comments input - "true" or "false"

/* which inputs will validate and antispam settigs */
var disable_after_submit = true; // disable the submit button after the form has been sent - "true" or "false"
var antispam_enabled = true; // is antispam security form code enabled - "true" or "false"
var val_name = true; // name input  - "true" or "false"
var val_email = true; // email input - "true" or "false"
var val_website = false; // website input - "true" or "false"
var val_where_did_you_hear_about_us = false; // where did you hear about us dropdown - "true" or "false"
var val_countries_input = true; // where are you from dropdown - "true" or "false"
var val_comments = true; // comments input - "true" or "false"