Join the mailing list
To receive the latest news, updates and tour announcements from Spunk, just stick your email address in the box below and hit ‘Submit’!
function CheckMultiple6(frm, name) { for (var i=0; i < frm.length; i++) { fldObj = frm.elements[i]; fldId = fldObj.id; if (fldId) { var fieldnamecheck=fldObj.id.indexOf(name); if (fieldnamecheck != -1) { if (fldObj.checked) { return true; } } } } return false; } function CheckForm6(f) { if (f.email.value == "") { alert("Please enter your email address."); f.email.focus(); return false; }
return true; };


















