BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Lough Ree Yacht Club - ECPv4.9.14//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:Lough Ree Yacht Club
X-ORIGINAL-URL:https://www.lryc.ie
X-WR-CALDESC:Events for Lough Ree Yacht Club
BEGIN:VTIMEZONE
TZID:UTC
BEGIN:STANDARD
TZOFFSETFROM:+0000
TZOFFSETTO:+0000
TZNAME:UTC
DTSTART:20260101T000000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;VALUE=DATE:20260620
DTEND;VALUE=DATE:20260622
DTSTAMP:20260418T141024
CREATED:20190301T235422Z
LAST-MODIFIED:20260227T122411Z
UID:2926-1781913600-1782086399@www.lryc.ie
SUMMARY:J24 Easterns
DESCRIPTION:\nLough Ree Yacht Club will be hosting the J24 Westerns 2019.\n\nJ24 Westerns Notice Of Race Click here\nJ24 Westerns Sailing Instructions Click here\n\nPlease note\, entries and dinner ticket sales close on Wednesday the 2nd of October at midnight\n\n				-2389Days\n				-15Hours\n				-12Minutes\n				-22Seconds\n			\n        document.addEventListener('DOMContentLoaded'\, function(event) {\n			jQuery('#main_countedown_1 .countdown').html('')\n		});#main_countedown_1 .countdown{text-align:center;}#main_countedown_1 .countdown{margin-top:10px;margin-bottom:10px}#main_countedown_1 .time_left{\nborder-radius:8px;\nbackground-color:#3DA8CC;\nfont-size:23px;\nfont-family:monospace;\ncolor:#000000;\n}\n#main_countedown_1 .time_description{\nfont-size:23px;\nfont-family:monospace;\ncolor:#000000;\n}\n#main_countedown_1 .element_conteiner{min-width:90px}\n\nOnline entry is available below.\n\n\n//numericalTotals\nvar total = 0;\n//Summary Strings\nvar summaryMsg = [];\n//Arrays\nvar errors = [];\nvar boatCount = 1;\n//Constants\nvar kidsMealFee = 10;\nvar adultMealFee = 15;\nvar onlydinner=false;\nfunction calculateTotal() {\n   this.summaryMsg = [];\n   thereAreValidationErrors()\n   if (this.errors.length > 0) {\n      printErrors();\n      return;\n   }\n   disableButton();\n   var xhr = new XMLHttpRequest()\n   xhr.open("GET"\, 'https://www.lryc.ie/?clear-cart'\, true);\n   xhr.setRequestHeader("Content-Type"\, "application/x-www-form-urlencoded; charset=UTF-8");\n   xhr.onload = function () {\n      if (!onlydinner){\n          getTotalBoatEntryFees();\n      } else {\n          adultMeals();\n      }\n   };\n   xhr.send();\n}\nfunction goToCart() {\n   window.location.href = 'www.lryc.ie/cart';\n}\nfunction thereAreValidationErrors(){\n   this.errors = [];\n   var boatNo = document.getElementsByName("boatNo");\n   var boatName = document.getElementsByName("boatName");\n   var club = document.getElementsByName("club");\n   var declaration = document.getElementById("declaration");\n   var personInCharge = document.getElementsByName("personInCharge");\nvar sunday = document.getElementsByName("selectSundayMeal");\n   if (boatNo[0].value===""&&boatName[0].value===""&&club[0].value===""&&personInCharge[0].value===""&&sunday[0].value>0){\n      this.mealsOnly=true\n   }\nif (club[0].value.length===0 && boatName[0].value.length===0 && boatNo[0].value.length===0){\n onlydinner = true;\n}\nif(!onlydinner){\n   if (club[0].value.length < 3) {\n      this.errors.push("You forgot to enter a club")\n   }\n   if (boatName[0].value.length < 3) {\n      this.errors.push("You forgot to enter a boat name")\n   }\n   if (boatNo[0].value.length < 3) {\n      this.errors.push("You forgot to enter a sail number")\n   }    \n   if (personInCharge[0].value.length === 0) {\n      this.errors.push("You must designate a person in charge");\n   }\n   if (!declaration.checked) {\n      this.errors.push("Please agree to the declaration")\n   }\n}\n   var validation = document.getElementById("validation");\n   validation.innerHTML = "";\n}\nfunction printErrors(){\n    var validation = document.getElementById("validation");\n    for (i = 0; i < errors.length; i++) {\n        validation.innerHTML += (errors[i] + "");\n    }\n}\nfunction createCartButton(){\n   this.cartHref += "\″ onclick=\"disableButton()\" id=\"goToCheckout\">Add to Cart"\n   var summary = document.getElementById("addToCart").innerHTML = this.cartHref;\n}\nfunction disableButton(){\n   var goToCheckout = document.getElementById("Next");\n   goToCheckout.disabled = true;\n   goToCheckout.value='Thank you\, please wait a few moments.';\n   goToCheckout.style.background = "#909090"\n}\nfunction getTotalBoatEntryFees(){\n  var discount= document.getElementById("discounted");\n  var helm = document.getElementsByName("helm");\n  if (helm.length>0){\n     helm = helm[0].value;\n  } else {\n     helm = "Not Specified";\n  }\n  var boatNo = document.getElementsByName("boatNo");\n  var boatName = document.getElementsByName("boatName");\n  var hullNumber = document.getElementsByName("hullNumber");\n  if (hullNumber.length>0){\n     hullNumber = hullNumber[0].value;\n  } else {\n     hullNumber = "Not Specified";\n  }\n  var club = document.getElementsByName("club");\n  var personInCharge = document.getElementsByName("personInCharge");\n  var xhr = new XMLHttpRequest();\n  xhr.open("POST"\, 'https://www.lryc.ie/?add-to-cart'\, true);\n  xhr.setRequestHeader("Content-Type"\, "application/x-www-form-urlencoded; charset=UTF-8");\n  xhr.onload = function () {\n    adultMeals();\n  };\n  var additionalInfo = ' Person In Charge:' + personInCharge[0].value + ' Hull No:'+hullNumber +' Boat Name:'+boatName[0].value;\n  var productId = 2995;\n   if (discount.checked) {\n      productId=4099;\n   }\nxhr.send('boatNumber='+boatNo[0].value+'&helm='+helm+'&club='+club[0].value+'&AdditionalInfo='+additionalInfo+'&quantity=1&add-to-cart='+productId);\n}\nfunction adultMeals() {\n   var sunday = document.getElementsByName("selectSundayMeal");\n   if (parseInt(sunday[0].value) > 0) {\n     var sundayInt = parseInt(sunday[0].value);\n     var xhr = new XMLHttpRequest();\n     xhr.open("POST"\, 'https://www.lryc.ie/?add-to-cart'\, true);\n     xhr.setRequestHeader("Content-Type"\, "application/x-www-form-urlencoded; charset=UTF-8");\n     xhr.onload = function () {\n       goToCart();\n     };\n     xhr.send('quantity='+sundayInt+'&add-to-cart=2997');\n  } else {\n       goToCart();\n  }\n}\n\n\n\n\n1 Boat to Enter\nPlease note that if the boat to be entered attended the first instance of this event in April of this year\, a discount of €80 will apply for an entry fee of €50. Please select this option immediately below if applicable\n\n\n\n\n\nThis boat previously entered in April\n\nClub\n\n\n\nBoat Name\n\n\n\nSail Number\n\n\n\nHull Number (If different from above)\n\n\n\nPerson in Charge\n\n\nHelm (If different from above)\n\n2 Meals\nSaturday Meal €25\n\n0\n1\n2\n3\n4\n5\n6\n7\n8\n\n\n3 Declaration\n\n1) I wish to enter the above named boat in this event and I agree to be bound by the Racing Rules of Sailing\, The Prescriptions of the Irish Sailing Association and International J24 Class Association Rules\, the Sailing Instructions (SI’s) and in particular\, the risk statement as stated in the Sailing Instructions.  I accept that participation of the above named boat is at my sole and exclusive risk in every respect. By this entry I hereby indemnify Lough Ree Yacht Club\, and its members\, officers and agents in respect of all claims and demands which may be made upon them in correction with or howsoever arising from the participation or intended participation of the above named boat\, and I acknowledge that Lough Ree Yacht Club\, officers\, members\, servants and agents\, accept no responsibility with respect to loss of life\, personal injury or loss\, or damage to property\, which I or any other person may sustain by reason of the participation or intended participation of the above named boat in this event or how so arising in connection with this event.\n2) I confirm that the boat described in the Boat details above is insured with third party racing liability cover of at least €3m per incident for the duration of the event and the boat's stay at Lough Ree Yacht Club.\n\n\n\n\n\nI agree to the above declaration\n\n\n\n\n4 Enter Event\nPlease check that all items needed have been selected correctly. For more information contact commodore@lryc.ie\n\n\n\n
URL:https://www.lryc.ie/event/j24-easterns/
ATTACH;FMTTYPE=image/jpeg:https://www.lryc.ie/wp-content/uploads/2019/03/j24.jpg
END:VEVENT
END:VCALENDAR