﻿function ShowIntro() {
    ClearPage();
    
    var divIntro = document.getElementById("Intro");
    divIntro.style.display = '';
}

function ShowWhatIsFSA() {
    ClearPage();

    var divWhatIsFSA = document.getElementById("WhatIsFSA");
    divWhatIsFSA.style.display = '';
}

function ShowQualifiedExpenses() {
    ClearPage();

    var divQualifiedExpenses = document.getElementById("QualifiedExpenses");
    divQualifiedExpenses.style.display = '';
}

function ShowDependantCare() {
    ClearPage();

    var divDependantCare = document.getElementById("DependantCare");
    divDependantCare.style.display = '';
}

function ShowHowDoFSAsWork() {
    ClearPage();

    var divHowDoFSAsWork = document.getElementById("HowDoFSAsWork");
    divHowDoFSAsWork.style.display = '';
}

function ShowFlexCard() {
    ClearPage();

    var divFlexCard = document.getElementById("FlexCard");
    divFlexCard.style.display = '';
}

function ShowManualSubmissions() {
    ClearPage();

    var divManualSubmissions = document.getElementById("ManualSubmissions");
    divManualSubmissions.style.display = '';
}

function ShowWhyFSA() {
    ClearPage();

    var divWhyFSA = document.getElementById("WhyFSA");
    divWhyFSA.style.display = '';
}

function ShowFlexImportantPoints() {
    ClearPage();

    var divFlexImportantPoints = document.getElementById("FlexImportantPoints");
    divFlexImportantPoints.style.display = '';
}

function ShowWebsiteAccess() {
    ClearPage();

    var divWebsiteAccess = document.getElementById("WebsiteAccess");
    divWebsiteAccess.style.display = '';
}

function ShowImportantPoints() {
    ClearPage();

    var divImportantPoints = document.getElementById("ImportantPoints");
    divImportantPoints.style.display = '';
}

function ClearPage() {
    var divTag = document.getElementById("Intro");
    divTag.style.display = 'none';
    divTag = document.getElementById("WhatIsFSA");
    divTag.style.display = 'none';
    divTag = document.getElementById("QualifiedExpenses");
    divTag.style.display = 'none';
    divTag = document.getElementById("DependantCare");
    divTag.style.display = 'none';
    divTag = document.getElementById("HowDoFSAsWork");
    divTag.style.display = 'none';
    divTag = document.getElementById("FlexCard");
    divTag.style.display = 'none';
    divTag = document.getElementById("ManualSubmissions");
    divTag.style.display = 'none';
    divTag = document.getElementById("WhyFSA");
    divTag.style.display = 'none';
    divTag = document.getElementById("FlexImportantPoints");
    divTag.style.display = 'none';
    divTag = document.getElementById("WebsiteAccess");
    divTag.style.display = 'none';
    divTag = document.getElementById("ImportantPoints");
    divTag.style.display = 'none';
}