function checkContactInfo()
{
	//Used by the Contact Us page
	document.CONTACT_FORM.CONTACT.value = "";

	if (trim(document.CONTACT_FORM.EMAIL.value).length < 1)
	{
		alert('You must input a valid e-mail address or you will not receive a response.');
		document.CONTACT_FORM.EMAIL.focus();
		return;
	}
	
	if (trim(document.CONTACT_FORM.MESSAGE.value).length < 1)
	{
        alert ('Please enter a Question/Issue.')
		document.CONTACT_FORM.MESSAGE.focus();
    	return;
	}

	document.CONTACT_FORM.CONTACT.value = "CONTACT";
	document.CONTACT_FORM.submit();

}
