function showMore(projectId) {
    document.getElementById("lessValueOutcomes" + projectId).style.display = "none";
    document.getElementById("moreValueOutcomesButton" + projectId).style.display = "block";
    
    $("#moreValueOutcomes" + projectId).slideDown(200);
}

function showLess(projectId) {
    document.getElementById("lessValueOutcomes" + projectId).style.display = "block";
    document.getElementById("moreValueOutcomes" + projectId).style.display = "none";
    document.getElementById("moreValueOutcomesButton" + projectId).style.display = "none";
}
