function checkfields() {
	var strfname;
	var strlname;
	var strphone;
	var error=false;
	var msg="";
	
	strfname=window.document.recheckcontact.First_Name.value;
	strlname=window.document.recheckcontact.Last_Name.value;
	strphone=window.document.recheckcontact.Phone_Number.value;
	
	if (strfname=="") {
		msg = "Please enter your first name\n"
		error=true;
	}
	
	if (strlname=="") {
		msg = msg +"Please enter your last name\n";
		error=true;
	}
	
	if (strphone=="") {
		msg = msg +"Please enter your telephone number\n";
		error=true;
	}
	
	if (error==true) {
		alert(msg);
		return false;
	}
	return true;
}