function contactForm() {
	if (document.getElementById('name').value == '' || document.getElementById('email').value == '' || document.getElementById('comments').value == '') {
		alert("All fields are required.");
		return false;
	}
	return true;
}