Baseball
Mark Your Calendars: Baseball Informational Meeting on Thursday, September 27th!
Baseball Informational Meeting (for families not in Fall/Winter sports)
There will be an information meeting regarding the upcoming Baseball season on Thursday, September 27th from 6-7:00 pm in the Community room at LWHS.
Please email Coach Gschwind for any additional information needed.
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 (_) {} })();