function CheckForm() { 
	if (document.getElementById('2235formname').value == '') {
		alert('Please complete the "Name" field');
		document.getElementById('2235formname').focus();
		return false;
	}
	if (document.getElementById('8617address').value == '') {
		alert('Please complete the "Address" field');
		document.getElementById('8617address').focus();
		return false;
	}
	if (document.getElementById('5341telephone').value == '') {
		alert('Please complete the "Telephone" field');
		document.getElementById('5341telephone').focus();
		return false;
	}
	if (document.getElementById('7022formplanlevel').value == '') {
		alert('Please complete the "Desired Plan Level" field');
		document.getElementById('7022formplanlevel').focus();
		return false;
	}
	if (document.getElementById('securityCode').value == '') {
		alert('Please type in the security code you see in the image');
		document.getElementById('securityCode').focus();
		return false;
	}
	return true;
}

function reloadCAPTCHA() {
	document.getElementById('CAPTCHA').src='/CAPTCHA/CAPTCHA_image.asp?'+Date();
	document.getElementById('securityCode').value='';
	document.getElementById('securityCode').focus();
}
