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