﻿function showhideDiv(divId, displayProp) {
    document.getElementById(divId).style.display = displayProp;
}
