function checkFormData(e) { if (e.name.value == "") { e.name.style.backgroundColor = "red"; return false; } else e.name.style.backgroundColor = ""; if (e.telephone.value == "") { e.telephone.style.backgroundColor = "red"; return false; } else e.telephone.style.backgroundColor = ""; if (e.email.value == "") { e.email.style.backgroundColor = "red"; return false; } else e.email.style.backgroundColor = ""; if (e.project.value == "") { e.project.style.backgroundColor = "red"; return false; } else e.project.style.backgroundColor = ""; if (e.locality.value == "") { e.locality.style.backgroundColor = "red"; return false; } else e.locality.style.backgroundColor = ""; if (e.comments.value == "") { e.comments.style.backgroundColor = "red"; return false; } else e.comments.style.backgroundColor = ""; e.pw.value = e.name.value.length + e.email.value.length + e.comments.value.length; return true; }
