function SetActiveYear(content) {
    $('div[id*=nl]').attr('style', 'display:none'); // All divs whose id starts with nl should be hidden
    document.getElementById(content).style.display = "block";    // Only show the selected div
}
