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