function sendEmail() {
	if (!checkCode(document.selectForm.code.value)) {
		return;
	} else if (document.selectForm.firstName.value.length == 0) {
		alert("Please enter your first name.");
		document.selectForm.firstName.focus();
	} else if (document.selectForm.lastName.value.length == 0) {
		alert("Please enter your last name.");
		document.selectForm.lastName.focus();
	} else if (document.selectForm.email.value.length == 0) {
		alert("Please enter your email address.");
		document.selectForm.email.focus();
	} else {
		if (document.selectForm.chkMonM.checked) { document.selectForm.monM.value = "Y"; }
		if (document.selectForm.chkTuesM.checked) { document.selectForm.tuesM.value = "Y"; }
		if (document.selectForm.chkWedM.checked) { document.selectForm.wedM.value = "Y"; }
		if (document.selectForm.chkThursM.checked) { document.selectForm.thursM.value = "Y"; }
		if (document.selectForm.chkFriM.checked) { document.selectForm.friM.value = "Y"; }
		if (document.selectForm.chkSatM.checked) { document.selectForm.satM.value = "Y"; }
		if (document.selectForm.chkSunM.checked) { document.selectForm.sunM.value = "Y"; }
		if (document.selectForm.chkMonA.checked) { document.selectForm.monA.value = "Y"; }
		if (document.selectForm.chkTuesA.checked) { document.selectForm.tuesA.value = "Y"; }
		if (document.selectForm.chkWedA.checked) { document.selectForm.wedA.value = "Y"; }
		if (document.selectForm.chkThursA.checked) { document.selectForm.thursA.value = "Y"; }
		if (document.selectForm.chkFriA.checked) { document.selectForm.friA.value = "Y"; }
		if (document.selectForm.chkSatA.checked) { document.selectForm.satA.value = "Y"; }
		if (document.selectForm.chkSunA.checked) { document.selectForm.sunA.value = "Y"; }
		if (document.selectForm.chkMonE.checked) { document.selectForm.monE.value = "Y"; }
		if (document.selectForm.chkTuesE.checked) { document.selectForm.tuesE.value = "Y"; }
		if (document.selectForm.chkWedE.checked) { document.selectForm.wedE.value = "Y"; }
		if (document.selectForm.chkThursE.checked) { document.selectForm.thursE.value = "Y"; }
		if (document.selectForm.chkFriE.checked) { document.selectForm.friE.value = "Y"; }
		if (document.selectForm.chkSatE.checked) { document.selectForm.satE.value = "Y"; }
		if (document.selectForm.chkSunE.checked) { document.selectForm.sunE.value = "Y"; }
		if (document.selectForm.chkIncreaseRevenue.checked) { document.selectForm.increaseRevenue.value = "Y"; }
		if (document.selectForm.chkGainMoreClients.checked) { document.selectForm.gainMoreClients.value = "Y"; }
		if (document.selectForm.chkGetMoreOrganized.checked) { document.selectForm.getMoreOrganized.value = "Y"; }
		if (document.selectForm.chkStopClientsFromLeaving.checked) { document.selectForm.stopClientsFromLeaving.value = "Y"; }
		if (document.selectForm.chkOther.checked) { document.selectForm.other.value = "Y"; }
		document.selectForm.submit();
	}
}
function init() {
	document.selectForm.firstName.focus();
	disableStatuses();
}

