

BaseAppSettings = function() {
    this.BrandID = '1';
    this.HostUrl = 'www.fritidsresor.se';
    this.IncludeSiteDirectory = 'http://www.fritidsresor.se/includes';
    this.BookingSiteDirectory = 'http://www.fritidsresor.se/boka-resa';
    this.SecureSiteDirectory = 'https://www.fritidsresor.se/skyddad-sida';
    this.SessionParameterName = 'q';
    this.DEBUG = '';
    this.TipsUrl = 'http://www.reslust.se';
    this.IsTemaSite = false;
    this.MaxPax = 6
}

BaseAjaxUrls = function() {
    this.SecureSite = '/skyddad-sida/';
    this.SecureDynamicContent = '/skyddad-sida/DynamicContent/';
    this.BookingSite = '/boka-resa/';
    this.DynamicContent = '/boka-resa/DynamicContent/';
    this.SearchResult = '/boka-resa/';
    this.CmsSite = 'http://www.fritidsresor.se/';
    this.SecureCmsSite = 'https://www.fritidsresor.se/';
}

TUIStrings=function(){
    this.sLetters="abcdefghijklmnopqrstuvxyz";
    this.arrCharacters=["å","ä","ö"];
    this.sCurrencySign=":-";
    this.sCalendarMonthNoDepartures="Vi har inga resor hit denna månad";
    this.sFlightInfo="Flyginformation";
    this.sFlightInfoTitle="Information";
    this.sFlightClassInfoTitle="Flygklassinformation";
    this.sCalendarEarliestDepartureDate="Första möjliga avresedatum";
    this.sMyChoiceAddonsText="Tillval";
    this.sPriceSpecificationTitle="Prisspecifikation";
    this.sContactInfoObligatoryField="Fältet är obligatoriskt";
    this.sContactInfoIncorrectEmail="Ogiltig e-postadress";
    this.sContactInfoIncorrectEmailConfirm="Ogiltigt bekräftad e-postadress";
    this.sContactInfoIncorrectDate="Ogiltigt födelsedatum";
    this.sUpgradeTitleNumber="lediga";
    this.sUpgradeToHeader="Uppgradering";
    this.sEnokNotBookableOnlineHeader="Ej bokningsbar på webben";
}

var oBaseAppSettings = new BaseAppSettings();
var oBaseAjaxUrls = new BaseAjaxUrls();
var oTUIStrings = new TUIStrings();