function checkFpasswordForm() {
	if(document.forms['passwordForm'].email.value == "") {
		document.getElementById("emailError").innerHTML = "* Please enter an email address"
		document.forms['passwordForm'].email.style.background = "#fdc2c2";
		return false;
	}
	if(document.forms['passwordForm'].email.value.indexOf("@") < 1 || document.forms['passwordForm'].email.value.lastIndexOf(".") < 1) {
		document.getElementById("emailError").innerHTML = "* Please enter a valid email address";
		document.forms['passwordForm'].email.style.background = "#fdc2c2";
		return false;
	}
	if(document.forms['passwordForm'].email.value != document.forms['passwordForm'].emailChk.value) {
		document.getElementById("emailError").innerHTML = "* The email addresses entered do not match"
		document.forms['passwordForm'].email.style.background = "#fdc2c2";
		document.forms['passwordForm'].emailChk.style.background = "#fdc2c2";
		return false;
	}
}