function submitContactForm(frm) {
	if (!frm.name.value || !frm.company.value || !frm.inquiry.value || !frm.email.value) {
		alert('Please fill in all the fields before sending the message.');
		return false;
	}
	
	if (frm.inquiry.value.length > 1024) {
		alert('Your inquiry is too long. Please limit your inquiry to about 1000 characters.');
		return false;
	}
	
	frm.action = 'contactUsProcess.php';
	frm.submission.value = 'real';
	
	return true;
}