It’s always time for fro-yo!
Win this $20 voucher at Vanilla Sky and you get to enjoy some of their fantastic flavors and mouthwatering toppings. Go on, treat yourself to a treat!
var icpForm7234 = document.getElementById('icpsignup7234');
if (document.location.protocol === "https:")
icpForm7234.action = "https://app.icontact.com/icp/signup.php";
function verifyRequired7234() { if (icpForm7234["fields_email"].value == "") { icpForm7234["fields_email"].focus(); alert("The Email field is required."); return false; }
if (icpForm7234["fields_email"].value && icpForm7234["fields_email"].value !== "") { icpForm7234["fields_email"].value = icpForm7234["fields_email"].value.trim(); }
return true; }
function validDate7234(value) {
if (value == "") { return true; }
var dateSections = value.split('/'); if (dateSections.length != 3) { return false; }
var month = dateSections[0]; if (month && (month.length > 2 || month < 1 || month > 12)) { return false; }
var day = dateSections[1]; if (day && (day.length > 2 || day < 1 || day > 31)) { return false; }
var year = dateSections[2]; if (!year || (year && year.length != 4)) { return false; }
var dateValue = new Date(value); if (month != (dateValue.getMonth()+1) || day != dateValue.getDate() || year != dateValue.getFullYear()) { return false; }
return true; }