<!--
//Begin script
function emailCheck() {

if (document.Form.name.value=="") {
alert("Please enter your contact name.");document.Form.name.focus();return false
}
if (document.Form.email.value=="") {
alert("Please enter your email address.");document.Form.email.focus();return false
}
if(document.Form.email.value.indexOf('@', 0) == -1){
alert("Please enter a valid email address.");document.Form.email.focus();return false
}
if(document.Form.email.value.indexOf('.', 0) == -1){
alert("Please enter a valid email address.");document.Form.email.focus();return false
}
if (document.Form.details.value=="") {
alert("Please send a comment.");document.Form.details.focus();return false
}
}
// End script
// -->
