It’s the simple additions to your service that improve patient satisfaction, start offering medicines delivery to all of them today

window.onpopstate = function() { var treatementPopupOpen = $("#treatment").length > 0; if (treatementPopupOpen) { // window.history.pushState(null, "", window.location.href); } }; $(window).on("popstate", function() { hidePopup(); }); function hidePopup() { var treatementPopupOpen = $("#treatment").length > 0; if (treatementPopupOpen) { $('#treatment').modal('hide'); return false; } var pharmacyPopupOpen = $("#pharmacy").length > 0; if (pharmacyPopupOpen) { $('#pharmacy').modal('hide'); return false; } var menuPopupOpen = $(".navbar-mobile").length > 0; if (menuPopupOpen) { $('.navbar-mobile').modal('hide'); return false; } }