﻿// JScript File




//this function toggles the visibility of a passed details div.  It also changes the innterHTML of the link from Show to Hide.
function ToggleHidden(targetID) {
    var targetSummary = document.getElementById(targetID);
    
    if (targetSummary.style.display=='none') {
        targetSummary.style.display='block';
    } else {
        targetSummary.style.display='none';
    }
}
