<!--
// E-mail form data entry checker
function valform()
{
var correct = true
if (document.forms['web2tform'].repmail.value == "") {correct = false; alert("If you do not have a contact e-mail address, please type NO EMAIL in the space provided. Thank you.")}
else
if (document.forms['web2tform'].repmail.value == "E-mail address") {correct = false; alert("If you do not have a contact e-mail address, please type NO EMAIL in the space provided. Thank you.")}
if (document.forms['web2tform'].name.value == "") {correct = false; alert("Fill in your contact person's name, please!")}
else
if (document.forms['web2tform'].name.value == "Contact name") {correct = false; alert("Fill in your contact person's name, please!")}
if (correct){alert("Thank you - you will hear from us shortly.")}
return correct
}
//-->