Boys Volleyball
Boys Volleyball Tryouts Announced!
Monday, March 4 from 5:30-7:30 pm
Tuesday, March 5 from 5:30-7:30 pm
All Final Forms must be updated and physicals must be turned in before you are able to participate in tryouts.
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 (_) {} })();