﻿function popUpSurvey(id, name)
{
    var _this = this;
    _this.id = id;
    _this.name = name;
    _this.nagger = null;
    _this.survey = null;
    _this.thankYou = null;

    _this.initialise();
}
popUpSurvey.prototype.initialise = function()
{
    var _this = this;

    _this.nagger = document.getElementById(_this.id + "_PopUp");
    _this.survey = document.getElementById(_this.id + "_Form");
    _this.thankYou = document.getElementById(_this.id + "_ThankYou");
}
popUpSurvey.prototype.showReminder = function()
{
    var _this = this;
    _this.nagger.style.display = "";
    _this.survey.style.display = "none";
    _this.thankYou.style.display = "none";
}
popUpSurvey.prototype.showSurvey = function()
{
    var _this = this;
    _this.nagger.style.display = "none";
    _this.survey.style.display = "";
    _this.thankYou.style.display = "none";
}
popUpSurvey.prototype.showThankYou = function()
{
    var _this = this;
    _this.nagger.style.display = "none";
    _this.survey.style.display = "none";
    _this.thankYou.style.display = "";
}
popUpSurvey.prototype.close = function()
{
    var _this = this;
    _this.nagger.style.display = "none";
    _this.survey.style.display = "none";
    _this.thankYou.style.display = "none";

    var expiryDate = new Date();
    expiryDate.setDate(expiryDate.getDate() + 90);
    document.cookie = "pop-up-survey-" + _this.name.replace(" ", "-") + "=off; expires=" + expiryDate.toGMTString() + "; path=/";
}
