Contact us by email at Cantatasingers@ymail.com or fill out and submit the form below. 

<!-- Choir Genius Dynamic Form Embed (passes URL parameters) -->
<div id="g4form-embed-container-1">
  <iframe id="g4form-embed-1" 
          width="100%" 
          height="600" 
          frameborder="0" 
          style="border: none;">
  </iframe>
</div>

<script>
(function() {
  // Get URL parameters from parent page
  const urlParams = new URLSearchParams(window.location.search);
  const iframe = document.getElementById('g4form-embed-1');
  
  // Base embed URL
  let embedUrl = 'https://cantatasingers.choirgenius.com/form_embed/1';
  
  // Add parameters if they exist
  if (urlParams.toString()) {
    embedUrl += '?' + urlParams.toString();
    console.log('G4Form: Passing parameters to embedded form:', urlParams.toString());
  }
  
  // Set the iframe source
  iframe.src = embedUrl;
  
  // Optional: Log for debugging
  console.log('G4Form: Loading embedded form with URL:', embedUrl);
})();
</script>
<!-- End Choir Genius Dynamic Form Embed -->