Wrestling
Mark Your Calendars: Wrestling Information Meeting on Tuesday, August 21!
There will be an information meeting regarding the upcoming Wrestling season on Tuesday, August 21.
Freshman will be held in Room 253, 2:30 p.m. at West Freshman School.
Grades 10-12, the meeting will be held at 3:00 p.m. in the Wrestling Room.
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 (_) {} })();