Media
Welcome to the 2011 Cornucopia online Press Room.
Here you can view the latest Press Releases, request further information (jsmith@watermarkinc.ca) and apply for Media Accreditation for the spectacular array of wine and food festivities during Cornucopia!
Please check our website frequently to stay updated on the Festival program and press releases.
// check multi checkboxes based on the name passed in. function CheckMultiple(name) { theFrm = document.frmSS; for (var i=0; i < theFrm.length; i++) { fldObj = theFrm.elements[i]; var fieldnamecheck=fldObj.name.indexOf(name); if (fieldnamecheck != -1) { if (fldObj.checked) { return true; } } } return false; }
function CheckSS() { theFrm = document.frmSS;
hasDot = theFrm.Email.value.indexOf("."); hasAt = theFrm.Email.value.indexOf("@");
if (hasDot == -1 || hasAt == -1) { alert("Please enter a valid email address."); theFrm.Email.focus(); theFrm.Email.select(); return false; }
valcheck = document.getElementById("Fields[29]"); if (valcheck.value == "") { alert("Please enter a value for the 'First and Last Name' field."); valcheck.focus(); valcheck.select(); return false;
} else { var minsize_29 = 0; var maxsize_29 = 100; var fieldlength = 0; fieldlength = valcheck.value.length; if (fieldlength < minsize_29) { alert("You must enter a value for the 'First and Last Name' field longer than " + minsize_29 + " characters"); valcheck.focus(); return false; } if (fieldlength > maxsize_29) { alert("You must enter a value for the 'First and Last Name' field no longer than " + maxsize_29 + " characters"); valcheck.focus(); return false; }
}
valcheck = document.getElementById("Fields[15]"); var re = new RegExp("[^0-9]+", "g"); var check = re.exec(valcheck.value); if (check != "" && check != null) { alert("You have invalid characters in the number field.\nPlease enter whole numbers only."); valcheck.focus(); valcheck.select(); return false; }
valcheck = document.getElementById("Fields[16]"); if (valcheck.value == "") { alert("Please enter a value for the 'Address' field."); valcheck.focus(); valcheck.select(); return false;
} else { var minsize_16 = 0; var maxsize_16 = 100; var fieldlength = 0; fieldlength = valcheck.value.length; if (fieldlength < minsize_16) { alert("You must enter a value for the 'Address' field longer than " + minsize_16 + " characters"); valcheck.focus(); return false; } if (fieldlength > maxsize_16) { alert("You must enter a value for the 'Address' field no longer than " + maxsize_16 + " characters"); valcheck.focus(); return false; }
}
valcheck = document.getElementById("Fields[35]"); if (valcheck.value == "") { alert("Please enter a value for the 'Postal/ZIP Code' field."); valcheck.focus(); valcheck.select(); return false;
} else { var minsize_35 = 0; var maxsize_35 = 100; var fieldlength = 0; fieldlength = valcheck.value.length; if (fieldlength < minsize_35) { alert("You must enter a value for the 'Postal/ZIP Code' field longer than " + minsize_35 + " characters"); valcheck.focus(); return false; } if (fieldlength > maxsize_35) { alert("You must enter a value for the 'Postal/ZIP Code' field no longer than " + maxsize_35 + " characters"); valcheck.focus(); return false; }
}
valcheck = document.getElementById("Fields[31]"); if (valcheck.value == "") { alert("Please enter a value for the 'Company Name' field."); valcheck.focus(); valcheck.select(); return false;
} else { var minsize_31 = 0; var maxsize_31 = 200; var fieldlength = 0; fieldlength = valcheck.value.length; if (fieldlength < minsize_31) { alert("You must enter a value for the 'Company Name' field longer than " + minsize_31 + " characters"); valcheck.focus(); return false; } if (fieldlength > maxsize_31) { alert("You must enter a value for the 'Company Name' field no longer than " + maxsize_31 + " characters"); valcheck.focus(); return false; }
}
return true; }


