function validateSub(){

if (document.formSub.fname.value=="") {
	alert("Oops! Please enter a FIRST NAME.")
	document.formSub.fname.focus()
	return false
}

if (document.formSub.email.value=="") {
	alert("Oops! Please enter an EMAIL ADDRESS.")
	document.formSub.email.focus()
	return false
}

if (isValidEmail(document.formSub.email.value)==false){
	alert("Oops! Please enter a VALID EMAIL ADDRESS.")
	document.formSub.email.focus()
	return false
}

return true
}