
function ContactUsCheckIt()
 {
	var theForm = document.ContactUsForm;

	for (i=0;i<theForm.elements.length;i++)
	{
		if (theForm.elements[i].value) {
			theForm.elements[i].value = theForm.elements[i].value.replace(/'/gi,'`');
		}
	}
	if (theForm.fname.value.length<1) {alert("Please enter your first name");return false;}
	if (theForm.lname.value.length<1) {alert("Please enter your last name");return false;}

	if (theForm.email.value.length<1) {alert("Please enter your email address");return false;}
	var checkSum=0;
	if (theForm.email.value.indexOf('@')>-1) checkSum++;
	if (theForm.email.value.indexOf('.')>-1) checkSum++;
	if (theForm.email.value.length>-5) checkSum++;
	if (checkSum<3) {alert("The email address you have entered does not appear to be valid");return false;}

	return true;
}
