function CheckForm( theform )
{
	var bMissingFields = false;
	var strFields = "";
	
	if( theform.First_Name.value == '' ){
		bMissingFields = true;
		strFields += "     First Name\n";
	}
	if( theform.Last_Name.value == '' ){
		bMissingFields = true;
		strFields += "     Last Name\n";
	}
	if((theform.Daytime_Phone.value == '') && (theform.Evening_Phone.value != '' )){
		bMissingFields = false;
		strFields += "";
	}
		if((theform.Daytime_Phone.value != '') && (theform.Evening_Phone.value == '' )){
		bMissingFields = false;
		strFields += "";
	}
		if((theform.Daytime_Phone.value == '') && (theform.Evening_Phone.value == '' )){
		bMissingFields = true;
		strFields += "     Daytime or Evening Phone Number\n";
	}
	/*
	if( theform.Email.value == '' ){
		bMissingFields = true;
		strFields += "     Email\n";
	}
	*/
	if( bMissingFields ) {
		alert( "I'm sorry, but you must provide the following information before continuing:\n" + strFields );
		return false;
	}
	
	return true;
}

/*
<form action="finish_order.php" method="post" onSubmit="return CheckForm(this)">
*/