﻿//Function used to expand/collapse sections
function ShowOrHideContent(idOfElement, itemId) {
    //Find the content and the indicator images
    var listing = document.getElementById(idOfElement);
    var expand = document.getElementById("ICG_ETH_EXPAND_" + itemId);
    var collapse = document.getElementById("ICG_ETH_COLLAPSE_" + itemId);

    if (listing.style.display == "none") {
        listing.style.display = "";

        //Ensure that we have the expand and collapse images
        if (expand != null) {
            expand.style.display = "none";
            collapse.style.display = "";
        }
    }
    else {
        listing.style.display = "none";

        //Enusre that we have the expand and collapse images
        if (expand != null) {
            expand.style.display = "";
            collapse.style.display = "none";
        }
    }
} 