Athletic Dept.
Lakota West Team Physicians make Top Doctors 2019 list in Cincinnati!
Congratulations to our team physicians Dr. Kremchek & Dr. Brannan on being named Top Doctors in the Cincy region. Thank You for all you do! #WestPride #WEareLakota
Article found at beaconortho.com
No surprise that @westfirebirds Team Physicians, @TKremchekMD and Dr. John Brannan are named to the 2019 TOP Doctors list!! @BeaconOrtho @LWHS_SportsMed keeping the Firebirds in the game!! #GiftedDocs #GreatPartners #WEareLakotahttps://t.co/uKVFpSyiX1
— Scott Kaufman (@LakotaWestAD) January 25, 2019
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();