function ValidReview (SubmitForm)
{
  var badData = '';

  if (!ValidText (SubmitForm, "txtName"))
    badData = badData + "* The Figure Name is required.\n";
  if (isEmpty (SubmitForm, "txtRating"))
    badData = badData + "* The Rating is required.\n";
  if (!ValidText (SubmitForm, "txtDescription"))
    badData = badData + "* The Review is required.\n";
  if (!ValidLength (SubmitForm, "txtDescription", 30))
    badData = badData + "* Please enter a better review of your figure.\n";

  if (badData == '')
  {
    return true;
  }
  else
  {
    alert('Please correct the following errors to submit your review:\n\n' + badData);
    return false;
  }
}
