// REGISTRATION FORM

function checkRegistration() {

	// First Name Box
	if (document.registration.First_Name.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.registration.First_Name.focus();
	return false;}
	
	// Last Name Box
	if (document.registration.Last_Name.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.registration.Last_Name.focus();
	return false;}

	// Address Box
	if (document.registration.Address.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.registration.Address.focus();
	return false;}

	// City Box
	if (document.registration.City.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.registration.City.focus();
	return false;}
	
	// Zip Code Box
	if (document.registration.Zip.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.registration.Zip.focus();
	return false;}
	
	// Phone # Box
	if (document.registration.Phone.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.registration.Phone.focus();
	return false;}
	
	// Password Box
	if (document.registration.Password.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.registration.Password.focus();
	return false;}
	
	// Confirm Password Box
	if (document.registration.Confirm.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.registration.Confirm.focus();
	return false;}
}


// MAILING FORM

function checkMailing() {
	// Mailing list E-mail Box
	if (document.mailing.mailing.value == "" || document.mailing.mailing.value == "youremail@email.com") {
	alert("Please enter your E-mail.");
	document.mailing.mailing.focus();
	return false;
	}
}


// CONTACT FORM

function checkContact() {

	// First Name Box
	if (document.contact.First_Name.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.contact.First_Name.focus();
	return false;}
	
	// Last Name Box
	else if (document.contact.Last_Name.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.contact.Last_Name.focus();
	return false;}

	// E-mail Box
	else if (document.contact.Email.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.contact.Email.focus();
	return false;}

	// Phone # Box
	else if (document.contact.Phone.value == "") {
	alert("Please fill in the fields marked with an asterisk.");
	document.contact.Phone.focus();
	return false;}
}