protected void SubmitReviewer()
    {
        ServiceReference.LoginServiceClient rlc = new ServiceReference.LoginServiceClient();

        ServiceReference.VenueLite vLite = new ServiceReference.VenueLite();

        vLite.Name = NameTextBox.Text;
        vLite.Address = AddressTextBox.Text;
        vLite.City = CityTextBox.Text;
        vLite.State = StateTextBox.Text;
        vLite.ZipCode = ZipTextBox.Text;
        vLite.Phone = PhoneTextBox.Text;
        vLite.Email = EmailTextBox.Text;
        vLite.WebPage = WebPageTextBox.Text;
        vLite.AgeRestriction = int.Parse(AgeTextBox.Text);
        vLite.UserName = UserNameTextBox.Text;
        vLite.Password = PasswordTextBox.Text;

        int result = rlc.VenueRegistration(vLite);

        if (result != -1)
            ResultLabel.Text = "Registration Complete";

        else
            ResultLabel.Text = "Registration Error";
    }