Mutual NDA Generator / Generador de Acuerdo de Confidencialidad Mutuo

Create a bilateral confidentiality agreement with side-by-side English and Spanish text

📄 Live Preview / Vista Previa en Vivo

`; const blob = new Blob([html], { type: 'application/msword' }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = 'Mutual-NDA-Bilingual.doc'; link.click(); } // Reset form function resetForm() { if (confirm('Reset all fields? / Restablecer todos los campos?')) { document.getElementById('party1Name').value = ''; document.getElementById('party1Address').value = ''; document.getElementById('party2Name').value = ''; document.getElementById('party2Address').value = ''; document.getElementById('effectiveDate').value = ''; document.getElementById('protectionPeriod').value = '2'; document.getElementById('governingLaw').value = 'california'; document.querySelectorAll('input[type="checkbox"]').forEach(cb => cb.checked = true); document.querySelector('input[name="purpose"][value="business"]').checked = true; document.querySelector('input[name="scope"][value="broad"]').checked = true; updatePreview(); } } // Initialize document.addEventListener('DOMContentLoaded', updatePreview);