function validateHologram() {
	var form = document.hologram_registration;
	if (form.firstName.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease provide your first name.");
		form.firstName.focus();
		return false;
	}
	if (form.lastName.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease provide your last name.");
		form.lastName.focus();
		return false;
	}
	if (form.address.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease provide your address.");
		form.address.focus();
		return false;
	}
	if (form.city.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease provide your city.");
		form.city.focus();
		return false;
	}
	if (form.state.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease provide your state.");
		form.state.focus();
		return false;
	}
	if (form.zip.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease provide your ZIP/Postal Code.");
		form.zip.focus();
		return false;
	}
	if (form.country.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease provide your Country.");
		form.country.focus();
		return false;
	}
	if (form.phone.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease provide your Phone Number.");
		form.phone.focus();
		return false;
	}
	if (form.email.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease provide your e-Mail Address.");
		form.email.focus();
		return false;
	}
	if (form.event.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease select an Event.");
		form.event.focus();
		return false;
	}
	if (form.itemCat.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease select an Item Category.");
		form.itemCat.focus();
		return false;
	}
	if (form.hologram.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease select your Hologram #.");
		form.hologram.focus();
		return false;
	}
	if (form.confirm_code.value == '') {
		alert("It appears that not all required information has been completed.\n\nPlease supply the confirmation code from the email you received.");
		form.confirm_code.focus();
		return false;
	}
	return true;
}