﻿function btnSideNavGo_OnClick(dropDownNavListID) {
    var dropDownNavList = document.getElementById(dropDownNavListID);
    if (dropDownNavList != null) {
        var newLocation = dropDownNavList.value;
        if (newLocation != "") {
            window.location.href = newLocation;
        }
    }
    return true;
}