Athletic Dept.
Mark Your Calendars: Fall Sports Awards Night!
ATTENTION ALL ATHLETES:
As the fall sports season begins to come to an end and we have a chance to honor those student-athletes who have proven to be great teammates. These students not only proved themselves on the field but also in the classroom and in the locker-room creating a positive atmosphere, encouraging their teammates, and strive to become a role model. We are proud of the work they put into this season and we look forward to honoring all our athletes on Nov.14th.
GO FIREBIRDS! #WestPride
What: Fall Sports Awards Night
When: Wednesday, November 14, 2018
Time: 6:30 p.m.
Where: Lakota West High (Auditorium)
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 (_) {} })();