// Submit a Comment NORTH METRO before Submit
function checkNMComment(){
	if(document.comment.customtext0.value=='') { 
		alert('Some required information was missing from the form.\n Please include your First Name.');
		document.comment.customtext0.focus();
		return false;
	}
	if(document.comment.customtext2.value=='') { 
		alert('Some required information was missing from the form.\n Please include your Last Name.');
		document.comment.customtext2.focus();
		return false;
	}
	if(document.comment.customlongtext0.value=='') { 
		alert('Some required information was missing from the form.\n Please include your Comment.');
		return false;
	}
	if(document.comment.customtext7.value=='') { 
		alert('Some required information was missing from the form.\n Please include your Zip Code.');
		document.comment.customtext7.focus();
		return false;
	}
	if(document.comment.customtext7.value!='') {
		str=document.comment.customtext7.value;
		re=/\b.{5}\b/;
		if(!str.match(re)){
			alert('Some required information was missing from the form.\n Your Zip Code must be 5 digits long.');
			document.comment.customtext7.focus();
			return false;
		}
	}
	document.comment.submit();
}

// Register for Newsletter NORTH METROk before Submit
function checkNMRegister(){
	if(document.bigregister.customtext0.value=='') { 
		alert('Some required information was missing from the form.\n Please include your First Name.');
		document.bigregister.customtext0.focus();
		return false;
	}
	if(document.bigregister.customtext1.value=='') { 
		alert('Some required information was missing from the form.\n Please include your Last Name.');
		document.bigregister.customtext1.focus();
		return false;
	}
	if(document.bigregister.email0.value=='') { 
		alert('Some required information was missing from the form.\n Please include your Email Address.');
		document.bigregister.email0.focus();
		return false;
	}
	document.bigregister.submit();
}

// Order DVD - Check before Submit
function checkDVDOrder(){
	if(document.dvdorder.customtext0.value=='') { 
		alert('Some required information was missing from the form.\n Please include your First Name.');
		document.dvdorder.customtext0.focus();
		return false;
	}
	if(document.dvdorder.customtext1.value=='') { 
		alert('Some required information was missing from the form.\n Please include your Last Name.');
		document.dvdorder.customtext1.focus();
		return false;
	}
	if(document.dvdorder.customtext3.value=='') { 
		alert('Some required information was missing from the form.\n Please include your Address.');
		document.dvdorder.customtext3.focus();
		return false;
	}
	if(document.dvdorder.customtext5.value=='') { 
		alert('Some required information was missing from the form.\n Please include your City.');
		document.dvdorder.customtext5.focus();
		return false;
	}
	if(document.dvdorder.customnum0.value=='') { 
		alert('Some required information was missing from the form.\n Please include your Zip Code.');
		document.dvdorder.customnum0.focus();
		return false;
	}
	document.dvdorder.submit();
}