
/**********************************************************
/	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 = "mail@oceandusk.co.uk";

//Message Template to be sent with generated email when a booking is confirmed
var gvBookingConfirmationMessage = "Hotel Confirmation - Credit Agent";

//Message Template to be sent with generated email when a booking is cancelled
var gvBookingCancellationMessage = "";

//Message Template to be sent with generated email when a booked service is cancelled
var gvBookedServiceCancellationMessage = "";

// Cancellation Policy Text
var gvCancellationPolocyText = "";

// message to Display when rules apply
var gvRuleRestrictionText = "";

//email address to contact when Rule apply
var gvRuleRestrictionEmail = "";

//Use Client Default Currency or Service currency for booking
var gvUseClientCurrency="false";

//Use for SMTP address
var gvSMTPServerName = "192.168.1.5";

//Use for Sender Name
var gvSenderName = "mail@oceandusk.co.uk";

//Use for Sender Address
var gvSenderAddress = "mail@oceandusk.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.";

//This text will be displayed one the Booking Screen (1st Confirmation button) 
//and on the Finalisation Screen (2nd Confirmation button) 
var gvAcceptTermsnCondText = ""

