<!-- 
//-------------------------------- 
// This code compares two fields in a form and submit it 
// if they're the same, or not if they're different. 
//-------------------------------- 
	function checkEmail(theForm) 
	{
	  if (theForm.Email.value != theForm.Email2.value) 
	{ alert('The emails do not match! Please re-enter both email fields, so that we can reply to you.'); return false; } else { return true; } 
	} 
//--> 
