function noBlank() {
if (document.contactForm.fullname.value.length > 0 &&
    document.contactForm.emailaddy.value.length > 0 &&
    document.contactForm.phone.value.length > 0) {
return true
}
else
{
alert("Please ensure all required fields are filled out. Thank you.");
return false;
}
}