
/**********************************************************
/	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.
//This variable can be used to hold JAC email address
var gvCCEmailTo = "fit@interopa.co.uk";

//Message Template to be sent with generated email when a booking is confirmed
//var gvBookingConfirmationMessage = "Client General Confirmation";
var gvBookingConfirmationMessage = "Booking in Progress";

//Message Template to be sent with generated email when a booking is cancelled
var gvBookingCancellationMessage = "Online Autoreply Cancellation";

//Message Template to be sent with generated email when a booked service is cancelled
var gvBookedServiceCancellationMessage = "Online Autoreply Cancellation";

// Cancellation Policy Text
var gvCancellationPolocyText='Cancellation Policy remains the same you agreed to in our Terms and Conditions'
// message to Display when rules apply
var gvRuleRestrictionText='Restrictions apply to this service. Please contact the Client directly'
//email address to contact when Rule apply
var gvRuleRestrictionEmail="interopa@interopa.co.uk";

//Use Client Default Currency or Service currency for booking
var gvUseClientCurrency="false";

//Use for SMTP address
var gvSMTPServerName = "10.150.3.55";

//Use for Sender Name
var gvSenderName = "Interopa On-Line Reservations";

//Use for Sender Address
var gvSenderAddress = "reservations@interopa.co.uk";


//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.";



