function Review()
{
	if
	( 
		(checkString(TheForm.Name,'Name')) && 
		(checkUSPhone(TheForm.Phone,TheForm.ContactBy[0].checked)) &&
		(checkEmail(TheForm.Email ,TheForm.ContactBy[1].checked))  && 
		(checkString(TheForm.Message,'Message'))

	)

	var answer = 	confirm(
				"*************************************************************\n" +
				"Please Confirm your data by pushing the 'ok' button or hit the 'cancel' button\nand make corrections\n" +
				"*************************************************************\n\n" +
				"Name: "+TheForm.Name.value+"\n"+
				"Phone: "+TheForm.Phone.value+"\n"+
				"Email: "+TheForm.Email.value+"\n"+
				"Message: "+TheForm.Message.value+"\n"
				)

	if (answer){
		TheForm.submit();
	}
	else{
		// nothing
	}

}
