﻿
function IsValidInquiry()
{
  txtName.Validate();
  txtEmail.Validate();
  mmoMessage.Validate();
  if (txtName.GetIsValid() && txtEmail.GetIsValid() && mmoMessage.GetIsValid())
    return true;
  else
    return false;
}