function show_month(current_month, new_month)
{
    // Hide current month
    //document.getElementById(current_month).style.display = "none";
    current_month.parentNode.style.display = "none";
    
    // Show new month
    document.getElementById(new_month).style.display = "block";
        
}
