
<!--
//--------------------------------
// This code compares two fields in a form and submit it
// if they're the same, or not if they're different.
//--------------------------------
function checkEmail(contactus) {
	if (contactus.email.value != contactus.email1.value)
	{
		alert('Please re-enter your email address');
		return false;
	} else {
		return true;
	}
}
//-->

