
    function showHideElementsArray(e) {
	for(x in formIdsToShowHide[e]) {
	    showHideElementById(formIdsToShowHide[e][x]);
	}
    }

    function showHideElementById(e) {

        var sectionid = document.getElementById(e);

	if(sectionid.style.display == '') {
	    sectionid.style.display='none';
	} else {
	    sectionid.style.display='';
	}

    }

    function showElementById(e) {
        var sectionid = document.getElementById(e);
        sectionid.style.display='';
    }

    function hideElementById(e) {
        var sectionid = document.getElementById(e);
        sectionid.style.display='none';
    }


