
/**********************************************************
/	Project		:	Travel Studio
/	Description	:	File containing customizable variables
/	File		:	Customize.js
/
***********************************************************/

//variable to hold "cc" email address when emailing messages to client.
//This variable can be used to hold Clients email address
var gvCCEmailTo = "tim@cityhotelrooms.com";

//Message Template to be sent with generated email when a booking is confirmed
var gvBookingConfirmationMessage = "Web General Confirmation";

//Message Template to be sent with generated email when a booking is cancelled
var gvBookingCancellationMessage = "Web General Cancellation";

//Message Template to be sent with generated email when a booked service is cancelled
var gvBookedServiceCancellationMessage = "Web General Cancellation";

// Cancellation Policy Text
var gvCancellationPolocyText='Services can not be amended or cancelled within 14 days of the arrival date. To amend bookings within 14 days of arrival date please contact CHR directly'

// message to Display when rules apply
var gvRuleRestrictionText='Restrictions apply to this service. Please contact CHR Ltd'

//email address to contact when Rule apply
var gvRuleRestrictionEmail="tim@cityhotelrooms.com";

//Use Client Default Currency or Service currency for booking
var gvUseClientCurrency="false";

//Use for SMTP address
var gvSMTPServerName = "mail.cityhotelrooms.com";

//Use for Sender Name
var gvSenderName = "CHR Reservations"

//Use for Sender Address
var gvSenderAddress = "tim@cityhotelrooms.com";

//Use to define the Search server, where the COM+ objects is deployed, 
// Make sure that IRSClientGen is load into COM+, for this make a PAckage and put IRSClientGen there !
var gvSearchServerName = "";

//Use for Automatic creating Subject for the mail using system wide defaults.
// can 0 or 1
var gvCreateSubject = "1";

var gvErrorStringForNA = "Price or exchange rate not found.";

//This text will be displayed one the Booking Screen (1st Confirmation button) 
//and on the Finalisation Screen (2nd Confirmation button) 
var gvAcceptTermsnCondText = ""



