// JavaScript Document
function verifyInput(snpform)
{
	var userAlert="Please complete all fields of information.\n\n";
	var registerOK="You are now a Stitch N’ Pitch Fan!\n\nStay tuned for more information and updates!";
	var okToSubmit=true;	
	with (snpform)
	{
		
		if (FIRST_NAME.value.length < 1 || FIRST_NAME.value == "" ) {
			userAlert=userAlert + "Please enter a First Name.\n";
			okToSubmit=false;
		}
		if (LAST_NAME.value.length < 1 || LAST_NAME.value == "" ) {
			userAlert=userAlert + "Please enter a Last Name.\n";
			okToSubmit=false;
		}
		if (CITY.value.length < 1 || CITY.value == "" ) {
			userAlert=userAlert + "Please enter a City.\n";
			okToSubmit=false;
		}
		if (STATE_PROVINCE.value.length < 1 || STATE_PROVINCE.value == "" ) {
			userAlert=userAlert + "Please select a State or Province (or select 'Not Listed' option at bottom of list if none apply).\n";
			okToSubmit=false;
		}
		if (ZIP.value.length < 1 || ZIP.value == "" ) {
			userAlert=userAlert + "Please enter a ZIP or Postal Code (or enter 'None' if there is none).\n";
			okToSubmit=false;
		}
		if (COUNTRY.value.length < 1 || COUNTRY.value == "" ) {
			userAlert=userAlert + "Please select a Country (or select 'Not Listed' option at bottom of list if none apply.).\n";
			okToSubmit=false;
		}
		if (EMAIL.value.length < 1 || EMAIL.value == "" ) {
			userAlert=userAlert + "Please enter an E-mail Address.\n";
			okToSubmit=false;
		}
		if (okToSubmit) {
			//alert(registerOK);
			return true;
		}
		else {
			alert(userAlert);
			//FIRST_NAME.focus();
			return false;
		}
	}
}

