function validate(){

	if (document.contact.fname.value=="") {
	alert("Oops! Please enter your FIRST NAME.")
	document.contact.fname.focus()
	return false
	}

	if (document.contact.lname.value=="") {
	alert("Oops! Please enter your LAST NAME.")
	document.contact.lname.focus()
	return false
	}

	if (document.contact.phone.value=="") {
	alert("Oops! Please enter your PHONE NUMBER.")
	document.contact.phone.focus()
	return false
	}

	if (document.contact.email.value=="") {
	alert("Oops! Please enter your EMAIL ADDRESS.")
	document.contact.email.focus()
	return false
	}

	if (isValidEmail(document.contact.email.value)==false){
		alert("Oops! Please enter a VALID EMAIL ADDRESS.")
		document.contact.email.focus()
		return false
	}

	document.contact.send.value = "Sending message... please wait...";
	document.contact.send.disabled = true;
	
return true
}

