function Review()
{

	if (!TheForm.CustType[0].checked && !TheForm.CustType[1].checked)
	{
		alert("Please check the radio button to let us know if you are interested in buying or selling");
		return false;
	}

	if (TheForm.Type.selectedIndex==0)
	{
			alert("Please select a Land Type");
			TheForm.Type.focus();
			return false;
	}

	if (TheForm.PropState.selectedIndex==0)
	{
			alert("Please select a State for the property");
			TheForm.PropState.focus();
			return false;
	}

	if (TheForm.CustState.selectedIndex==0)
	{
			alert("Please select a State");
			TheForm.CustState.focus();
			return false;
	}

	if
	( 
		(checkString(TheForm.FName,'First Name')) && 
		(checkString(TheForm.LName,'Last Name')) && 
		(checkString(TheForm.Address,'Address')) && 
		(checkString(TheForm.City,'City')) && 
		(checkEmail(TheForm.Email ,false)) &&
		(checkUSPhone(TheForm.Phone,false))
	)

	var answer = 	confirm(
				"*************************************************************\n" +
				"Please Confirm your data by pushing the 'ok' button or hit the 'cancel' button\nand make corrections\n" +
				"*************************************************************\n\n" +
				"Land Type: "+TheForm.Type[TheForm.Type.selectedIndex].value+"\n"+
				"Property Loacation: " +TheForm.PropState[TheForm.PropState.selectedIndex].value+"\n"+
				"Name: "+TheForm.FName.value+" "+TheForm.LName.value+"\n"+
				"Address: "+TheForm.Address.value+"\n"+
				"City: "+TheForm.City.value+"\n"+
				"State: " +TheForm.CustState[TheForm.CustState.selectedIndex].value+"\n"+
				"Phone: "+TheForm.Phone.value+"\n"+
				"Email: "+TheForm.Email.value+"\n"
				)

	if (answer){
		TheForm.submit();
	}
	else{
		// nothing
	}

}
