👔 Employment NDA / Соглашение о Конфиденциальности для Работника

Generate a bilingual employment confidentiality agreement for international teams with Russian-speaking employees. Protects trade secrets and proprietary company information.

🏢 Employer Information / Информация о работодателе

👤 Employee Information / Информация о работнике

🔒 Protection Scope / Объем защиты

⚗️ Terms / Условия

📄 Live Preview / Предпросмотр

`; const blob = new Blob([html], { type: 'application/msword' }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = 'Employment-NDA-Russian-English.doc'; link.click(); } function resetForm() { if (confirm('Reset all fields? / Сбросить все поля?')) { document.querySelectorAll('input[type="text"], textarea').forEach(el => el.value = ''); document.getElementById('effectiveDate').value = ''; updatePreview(); } } document.addEventListener('DOMContentLoaded', updatePreview);