function CheckForm() {
	if (document.getElementById('4984formname').value == '') {
		alert('Please complete the "Name" field');
		document.getElementById('4984formname').focus();
		return false;
	}
	if (document.getElementById('formjobtitle').value == '') {
		alert('Please complete the "Job Title" field');
		document.getElementById('formjobtitle').focus();
		return false;
	}
	if (document.getElementById('formcompany').value == '') {
		alert('Please complete the "Company" field');
		document.getElementById('formcompany').focus();
		return false;
	}
	if (document.getElementById('3179formemail').value == '') {
		alert('Please enter a valid email address');
		document.getElementById('3179formemail').focus();
		return false;
	}
	if (document.getElementById('8472formphone').value == '') {
		alert('Please complete the "Telephone" field');
		document.getElementById('8472formphone').focus();
		return false;
	}
	if (document.getElementById('formaddress').value == '') {
		alert('Please complete the "Address" field');
		document.getElementById('formaddress').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();
}
