
/**********************************************************
/	Project		:	Travel Studio
/	Description	:	File containing customizable variables
/	File		:	Customize.js
/	Author		:	Rehan Shamsi
/	Created		:	01 Nov 2000
/
/   History     :
***********************************************************/

//variable to hold "cc" email address when emailing messages to client.
var gvCCEmailTo = "travelstudio@itbholland.com";

//Message Template to be sent with generated email when a booking is confirmed
var gvBookingConfirmationMessage = "Client General Confirmation";
var gvBookingConfirmationMessage = "Client Internet to be confirmed";

//Message Template to be sent with generated email when a booking is cancelled
var gvBookingCancellationMessage = "Client Cancellation English";

//Message Template to be sent with generated email when a booked service is cancelled
var gvBookedServiceCancellationMessage = "Client Change English";

// Cancellation Policy Text
var gvCancellationPolocyText = "Services can not be amended or cancelled within 2 days of the arrival date. To amend bookings within 2 days of arrival date please contact ITBholland directly";

// message to Display when rules apply
var gvRuleRestrictionText = "Services can not be amended or cancelled within 2 days of the arrival date. To amend bookings within 2 days of arrival date please contact ITBholland directly";

//email address to contact when Rule apply
var gvRuleRestrictionEmail = "fit@itbholland.com";

//Use Client Default Currency or Service currency for booking
var gvUseClientCurrency="false";

//Use for SMTP address
var gvSMTPServerName = "10.0.0.1";

//Use for Sender Name
var gvSenderName = "Travelstudio";

//Use for Sender Address
var gvSenderAddress = "travelstudio@itbholland.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 = "";

