﻿function displayReservation(elemName)
{
    var andover = document.getElementById("north-andoverLong");  
    var boston = document.getElementById("bostonLong");
    var hingham = document.getElementById("hinghamLong");
    var windsor = document.getElementById("south-windsorLong");
    var virginia = document.getElementById("virginia-beachLong"); 

    if(andover != null) andover.style.display = "none";
    if(boston != null) boston.style.display = "none";
    if(hingham != null) hingham.style.display = "none";
    if(windsor != null) windsor.style.display = "none";
    if(virginia != null) virginia.style.display = "none";


    var shortDiv = document.getElementById(elemName + "Short");
    var longDiv = document.getElementById(elemName + "Long");
    if(longDiv != null)
        longDiv.style.display = "block";
    if(shortDiv != null)
        shortDiv.style.display = "none";   
}

function hideReservation(elemName)
{
    var shortDiv = document.getElementById(elemName + "Short");
    var longDiv = document.getElementById(elemName + "Long");
    if(longDiv != null)
        longDiv.style.display = "none";
    if(shortDiv != null)
        shortDiv.style.display = "block";
}