function validateRequiredFields() {
//Important, to add more fields for validation just throw them here:
var txtFirstName = document.getElementById("fName");
var txtEmail = document.getElementById("email");
var txtPhone = document.getElementById("phone");
var txtIntended = document.getElementById("intended");
var txtLocation = document.getElementById("location");
var txtUsage = document.getElementById("usage");

var errcolor = '#990000'

// Validate the Email Sender's Name
	if (!txtFirstName.value > '') {
		alert("Your First Name is required."); 
		txtFirstName.focus();
		//txtLastName.style.color=errcolor;
		return false;
		}	
	if (!txtEmail.value > '') {
		alert("An Email Address is required."); 
		txtEmail.focus();
		//txtEmail.style.color=errcolor;
		return false;
	}
		if (!txtPhone.value > '') {
		alert("A phone number is required."); 
		txtPhone.focus();
		//txtPhone.style.color=errcolor;
		return false;
	}
		if (!txtIntended.value > '') {
		alert("An intended use must be provided."); 
		txtIntended.focus();
		//txtIntended.style.color=errcolor;
		return false;
	}
		if (!txtLocation.value > '') {
		alert("A location must be provided."); 
		txtLocation.focus();
		//txtLocation.style.color=errcolor;
		return false;
	}
		if (!txtUsage.value > '') {
		alert("You must provide your business identity."); 
		txtUsage.focus();
		//txtUsage.style.color=errcolor;
		return false;
	}
}
