<!--Begin cloak

function formCheck() {

if (document.Form.name.value=="") {
alert("Please enter your name.");document.Form.name.focus();return false
}
if (document.Form.organization.value=="") {
alert("What organization are you with?");document.Form.organization.focus();return false
}
if (document.Form.phone.value=="") {
alert("Please enter your phone number");document.Form.phone.focus();return false
}
if (document.Form.email.value=="") {
alert("Please provide a valid email address.");document.Form.email.focus();return false
}
if (document.Form.email.value!="") {
if (document.Form.email.value.indexOf("@")==-1 || document.Form.email.value.indexOf(".")==-1 || document.Form.email.value.indexOf(" ")!=-1 || document.Form.email.value.length<6) {
alert("Sorry, your email address is not valid.");document.Form.email.focus();return false
}}

}

// End cloak -->


