Skip to content

Empowering Albertans to Live Pain-Free Lives

With clinics in Edmonton, Red Deer, and Tofield, HealthPointe is a leader in chronic pain management. Speak with your doctor today to start your journey toward better health.

Advanced Care for Pain, Spine & Sport Injuries

At HealthPointe, we understand that chronic pain impacts every part of your life. Our specialized team is here to support your recovery and empower your future.

Collaborative Treatment Plans

Our team of experts works together to create customized care plans that address your specific pain concerns and overall health goals.

Patient-Centered Approach

Your well-being is our priority. From your first visit to ongoing follow-ups, our compassionate staff ensures you feel supported and understood.

Comprehensive Care

We combine medical expertise, education, and community resources to provide a holistic approach to your care, helping you take back control of your daily life.

Local Clinics, Trusted Care

With locations in Edmonton, Red Deer, and Tofield, expert care is always close to home. Find a HealthPointe clinic near you and start your path to relief.

Streamlined Referrals for Healthcare Professionals

Partner with HealthPointe to provide your patients with access to Alberta’s leading chronic pain management specialists. Access referral forms and contact information quickly and easily.
document.addEventListener('DOMContentLoaded', function () { // Adjust this to match your sticky header's height in pixels. var HEADER_OFFSET = 100; function scrollToTarget(targetId) { var target = document.getElementById(targetId); if (!target) return; var targetPosition = target.getBoundingClientRect().top + window.pageYOffset - HEADER_OFFSET; window.scrollTo({ top: targetPosition, behavior: 'smooth' }); } // Intercept clicks on any link that contains a hash. document.querySelectorAll('a[href*="#"]').forEach(function (link) { link.addEventListener('click', function (e) { var url; try { url = new URL(link.href, window.location.origin); } catch (err) { return; // malformed href, let default behavior happen } var hash = url.hash; if (!hash) return; // Normalize paths (strip trailing slashes) for comparison. var linkPath = url.pathname.replace(/\/$/, ''); var currentPath = window.location.pathname.replace(/\/$/, ''); if (linkPath === currentPath || linkPath === '') { // We're already on the target page: skip the browser's // default jump and animate manually instead. e.preventDefault(); var targetId = hash.substring(1); scrollToTarget(targetId); history.pushState(null, null, hash); } // Otherwise, it's a link to a different page — let the // browser navigate there normally. The block below will // handle the smooth scroll once the new page loads. }); }); // If the page loads with a hash already in the URL (i.e. someone // clicked a menu link from a different page), smooth-scroll to // it instead of leaving the browser's instant jump as-is. if (window.location.hash) { setTimeout(function () { scrollToTarget(window.location.hash.substring(1)); }, 150); // small delay lets layout/images settle first } });