<!-- Last edited by Bryan Meck 6/18/2007 re: website reorganization project -->

//This checks a specifically named form to see if 2 specifically named form elements match each other

function verifyform()
{        
  	if(document.dataform.email.value==document.dataform.emailverify.value)
  	{           
  		return true;
  	}                
  	else
  	{        
  		alert('Verify that you retyped your email address correctly and try again.');
	     document.dataform.emailverify.focus();
	     document.dataform.emailverify.select();
  	 	return false;
  	}
}