﻿function openHelp() {

    if (document.location.href.indexOf('ProgramApplication') > 0)
        window.open('../Help/index.html', 'helpWin', 'status=0, location=0, menubar-0, directories=0, height=450, width=880, resizable=1');
    else
        window.open('Help/index.html', 'helpWin', 'status=0, location=0, menubar-0, directories=0, height=450, width=880, resizable=1');
}


function setTab(showTab, hideTab) {

    document.getElementById(showTab).style.display = 'block';
    document.getElementById(hideTab).style.display = 'none';

    var showAgency = document.getElementById('showAgency');
    var showUpload = document.getElementById('showUpload');

    if (showAgency.className === 'inactiveTab') {
        showAgency.className = 'activeTab';
        showUpload.className = 'inactiveTab';
    } else {
        showAgency.className = 'inactiveTab';
        showUpload.className = 'activeTab';
    }
    

}
