
function CheckFormContact( theform )
{
	var bMissingFields = false;
	var strFields = "";
	
	if( theform.name.value == '' ){
		bMissingFields = true;
		strFields += "     PARTY LEAD NAME/ORGANISER\n";
	}
	if( theform.contact.value == '' ){
		bMissingFields = true;
		strFields += "     CONTACT NUMBER\n";
	}
	if( theform.email.value == '' ){
		bMissingFields = true;
		strFields += "     EMAIL ADDRESS\n";
	}

	if( theform.address.value == '' ){
		bMissingFields = true;
		strFields += "     POSTAL ADDRESS\n";
	}

	if( theform.event.value == '' ){
		bMissingFields = true;
		strFields += "     EVENT\n";
	}

	if( theform.area.value == '' ){
		bMissingFields = true;
		strFields += "     AREA LOCATION\n";
	}

	if( theform.number.value == '' ){
		bMissingFields = true;
		strFields += "     NUMBER IN PARTY\n";
	}



	if( bMissingFields ) {
		alert( "We are sorry, but you must provide the following field(s) before continuing:\n" + strFields );
		return false;
	}
	
	return true;
}



