function copyText() { const text = document.getElementById('text-to-copy').innerText; navigator.clipboard.writeText(text).then(() => { alert('Text copied to clipboard'); }).catch(err => { alert('Error in copying text: ', err); }); }
top of page

Contact Us

Thank you! Dr. Brendel will be in touch within one week!

bottom of page