/*
	HOTEL RESERVATION FORM 3.0 [PUBLIC SETTINGS]
	http://acidmartin.wemakesites.net/#hotel
*/

/* Please, refer to HotelReservationForm.JS/Backend/USING_THE_SCRIPT.pdf when modifying these properties */

/* general settings */
var reservationformroot = 'Scripts'; // scripts root folder
var reservationformjsskin = 'Mac' // reservation form skin
var formwidth = '600'; // reservation form width

/* new properties (since version 2.1) */
var rounded_corners_enabled = true; // enable or disable rounded corners for input boxes
var inputs_width = '200'; // enable or disable rounded corners for input boxes
var notes_box_height = '150'; // height of the "notes" textbox
var comboboxes_width = '100'; // width of the dropdowns
/* end of new properties (since version 2.1) */

var validation_enabled = true; // is form validation enabled: "true" or "false"
var enable_print = true; // allow print: "true" or "false"

/* hotel settings */
var hotel_name = 'FrigilianaRural.com';
var hotel_check_in_hours = '14.00 - 20.00'; // hotel's check-in hours range
var hotel_check_out_hours = '10.00 - 12.00'; // hotel's check-out hours range

/* the text below will appear when the form is printed by the person who is making the reservation and on the preview panel */
var print_form_free_text = [
	'<p>Gracias por elegirnos para sus vacaciones. Por favor, imprima y guarde esta "Solicitud de Reserva" para futuras referencias.</p>' +
	'<p>En caso de cancelacion, contacte con nosotros en <a href="mailto:turismo.rural.frigiliana@gmail.com">turismo.rural.frigiliana@gmail.com</a> o en los telefonos 639 900 298 o 951 70 74 10 al menos 3 semanas antes de la fecha de llegada.</p>' +
	'<p>Recibiras una copia de esta Solicitud de Reserva en su correo electronico y en breve nos pondremos en contacto con usted para confirmar su Solicitud. Gracias.</p>'
];

/* form strings */
var reservation_first_name_label = 'Nombre'; // person's first name label
var reservation_last_name_label = 'Apellidos'; // person's last name label
var reservation_email_name_label = 'Email'; // email label
var reservation_phone_label = 'Telefono'; // phone number label
var reservation_check_in_label = 'Fecha Entrada'; // check-in datepicker label
var reservation_check_out_label = 'Fecha Salida'; // check-out datepicker label
var number_of_guests_label = 'Numero de Personas'; // number of guests label
var max_number_of_guests_count = 6; // number of guests count
var notes_label = 'Mensaje'; // additional notes label
var book_now_label = 'Reserve Ahora'; // "book now" button text
var personal_info_legend = 'Informacion Personal'; // personal information area text
var dates_legend = 'Detalles de Reserva'; // reservation details area text
var options_legend = 'Opciones de Reserva'; // reservation options area text
var preview_label = 'Vista Impresion'; // "preview" button label (will appear only if var enable_print = true)
var print_label = 'Imprimir Reserva'; // "print" button label (will appear only if var enable_print= true)
var guestname_label = 'Nombre del Cliente'; // "guest name" label in the preview panel
var close_label = 'Cerrar'; // "close" link in the preview panel
var reservation_id_string = 'ID Reserva'; // "reservation id" string
var reservation_sent = 'Su reserva ha sido enviada.'; // message that will be displayed when the reservation form has been processed

/* radiobuttons "Included Meals" settings */
var show_meals_list = true;// "true" or "false" - show meals radiobutton list
var meals_label = 'Casa a Reservar'; // text for the included meals label in print preview

/* checkboxes "Additional Options" settings */
var show_additional_options_list = false;// "true" or "false" - show "additional options" checkbox list

var show_smoking_checkbox = false; // "true" or "false" - show smokers room option
var show_children_checkbox = false; // "true" or "false" - show children option
var show_pets_checkbox = false; // "true" or "false" - show pets option

var smoking_label = 'Fumadores'; // smoking room label for the print preview window
var children_label = 'Menores'; // children label for the print preview window
var pets_label = 'Mascotas'; // pets label for the print preview window

/* antispam settings */
var antispam_enabled = true; // is antispam security form code enabled: "true" or "false"
var antispam_label = 'Texto Antispam'; // antispam code area text
var new_security_code_label = 'nuevo codigo de seguridad'; // "create new security code" string
var security_code_instructions = 'Por favor, escriba el codigo de seguridad situado a la izquierda.'; // security code instrucions that can contain HTML

/* here you can add booking reservations that can contain HTML */
var instructions = [
	'<p>Gracias por escoger nuestras Villas para sus vacaciones!!</p>' + 
	'<p>Por favor, rellene y envie el formulario de reserva situado abajo, si lo desea. <br>Cuando recibamos su solicitud de reserva, esta sera gestionada por el sistema, y si esta todo correcto, usted recibira un correo de confirmacion.</p>' +
	'<p>Todos los campos excepto "' + notes_label + '" son obligatorios.</p>'
];

