function checkEdit(thisForm){
	if(thisForm.email2.value != thisForm.email.value){
		alert('Oops, the e-mail addresses you have entered do not match!');
		return false;
	}
	if(thisForm.newpass2.value != thisForm.newpass.value){
		alert('Oops, the passwords you have entered do not match!');
		return false;
	}
	return true;
}
