<!-- //


function CheckData()  {



	re = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/

	if (!re.test(document.ContactCOR.mailfrom.value)) {
	document.ContactCOR.mailfrom.value = "*** Missing or Invalid Email Address ***";
	document.ContactCOR.mailfrom.style.backgroundColor="yellow";
	document.ContactCOR.mailfrom.focus();
	var problem = true;
	}
	
	if (document.ContactCOR.mailsubject.value.length <= 0)  {
	document.ContactCOR.mailsubject.value = "*** Enter Email Subject ***";
	document.ContactCOR.mailsubject.style.backgroundColor="yellow";
	document.ContactCOR.mailsubject.focus();
	var problem = true;
	}
	
	if (document.ContactCOR.mailbody.value.length <= 0)  {
	document.ContactCOR.mailbody.value = "*** Enter Your Message ***";
	document.ContactCOR.mailbody.style.backgroundColor="yellow";
	document.ContactCOR.mailbody.focus();
	var problem = true;
	}

	
	if (problem == true) {
	alert ("The form is missing required information.  Please fill out the form completely and accurately to insure transmission.");
	return false;
	} else {
	return true;
	}
	
	
}


function resetField(redo) {
	redo.value = '';
	redo.style.backgroundColor="white"
}


// -->
