We’re Axe-cited to host you at Throw LumberJill’s on Thursday, April 22. This is a family-friendly event for alumni and their children, 10 years and older. For the cost of $12 person, you will have the opportunity to throw axes and enjoy Oh So Gelato’s best flavors.
function validateForm() {
var x=document.forms["form"]["ref1val"].value; if (x=="") { alert("Please enter your first and last name"); return false; }
var x=document.forms["form"]["ref2val"].value; if (x=="") { alert("Please enter your address."); return false; }
var x=document.forms["form"]["ref3val"].value; if (x=="") { alert("Please enter your city."); return false; }
var x=document.forms["form"]["ref4val"].value; if (x=="0") { alert("Please enter your state."); return false; }
var x=document.forms["form"]["ref5val"].value; if (x=="") { alert("Please enter your zip."); return false; }
var x=document.forms["form"]["ref6val"].value; if (x=="") { alert("Please enter your phone."); return false; }
var x=document.forms["form"]["ref7val"].value; if (x=="") { alert("Please enter your e-mail."); return false; }
var x=document.forms["form"]["ref9val"].value; if (x=="") { alert("Please list names of attendess."); return false; }
}; function calculateTotal(){ const perAttendee = 12; let numAttendees = document.getElementById('ATTENDEES').value; var totalCost = numAttendees*perAttendee; console.log(totalCost); document.getElementById('totalCost').innerHTML = totalCost; document.getElementsByName('amount1')[0].value=totalCost; }