/**
 * The registration data that will be submitted and/or stored in the cookie.
 */
var ApplicationData = function() {
    this.campers = [];
    this.currentCamperIndex = -1;

    this.housingNotes = "";
    this.monitorService = false;
    this.workshopOffer = "";
    this.instrumentOffer = "";
    this.workshopRequest = "";
    this.dishwashing = false;
    this.travelingMonitor = false;
    this.arrival3_6 = false; 
    this.arrivalForDinner = false;
    this.arrivalAfterDinner = false;
    this.arrivalOther = false;
    this.otherArrivalTime = "";
    this.departBeforeDinner = "";
    this.offerRide = false;
    this.needRide = false;
    this.otherNotes = "";
    
    this.useEmail = true; // Appears on the camper form for the contact.
    
    this.submitted = false;
};
var applicationData = null;
var savedApplicationData = null;
