Join us for an exclusive session on how the Needle-Free Injection System (N-FIS) is transforming pediatric care. Hear directly from leading clinicians/doctors already using N-FIS to deliver almost pain-free injections — without the needle!
Dr. ASHISH AGARWAL
Dr. NITIN SHAH
Dr. YATIN MEHTA
Transforming pediatric immunization experiences through needle-free technology
Boosting safety in immunization settings by eliminating needlestick injuries
Addressing key concerns around safety and efficacy with clinical data
Reducing cross-contamination and toxic medical waste disposal
Bring your questions! Our experts will answer them live during the session. You can submit questions when registering or during the webinar.
Limited seats available! Register now to secure your spot at this exclusive webinar.
document.addEventListener('DOMContentLoaded', function() { // Enhanced calendar functionality const eventDetails = { title: 'N-FIS Webinar: Transforming Pediatric Care', description: 'Join us for an exclusive session on how the Needle-Free Injection System (N-FIS) is transforming pediatric care. Hear directly from leading clinicians/doctors already using N-FIS to deliver almost pain-free injections — without the needle!', location: 'Online (Zoom Webinar)', startTime: '2025-05-10T14:00:00+05:30', // 2:00 PM IST endTime: '2025-05-10T16:00:00+05:30', // 4:00 PM IST timeZone: 'Asia/Kolkata' };
// Google Calendar document.getElementById('googleCalendar').addEventListener('click', function(e) { e.preventDefault(); const start = formatDateForGoogle(eventDetails.startTime); const end = formatDateForGoogle(eventDetails.endTime); const url = `https://www.google.com/calendar/render?action=TEMPLATE&text=${encodeURIComponent(eventDetails.title)}&dates=${start}/${end}&details=${encodeURIComponent(eventDetails.description)}&location=${encodeURIComponent(eventDetails.location)}&ctz=${eventDetails.timeZone}`; window.open(url, '_blank'); });
// Outlook Calendar document.getElementById('outlookCalendar').addEventListener('click', function(e) { e.preventDefault(); const start = new Date(eventDetails.startTime).toISOString().replace(/-|:|\.\d+/g, ''); const end = new Date(eventDetails.endTime).toISOString().replace(/-|:|\.\d+/g, ''); const url = `https://outlook.live.com/calendar/0/deeplink/compose?path=/calendar/action/compose&rru=addevent&subject=${encodeURIComponent(eventDetails.title)}&startdt=${start}&enddt=${end}&body=${encodeURIComponent(eventDetails.description + '\n\nLocation: ' + eventDetails.location)}&location=${encodeURIComponent(eventDetails.location)}`; window.open(url, '_blank'); });
// iCal Download document.getElementById('icalDownload').addEventListener('click', function(e) { e.preventDefault(); const ical = `BEGIN:VCALENDAR VERSION:2.0 PRODID:-//N-FIS Webinar//EN BEGIN:VEVENT UID:${Date.now()}@nfiswebinar DTSTAMP:${formatDateForiCal(new Date())} DTSTART:${formatDateForiCal(new Date(eventDetails.startTime))} DTEND:${formatDateForiCal(new Date(eventDetails.endTime))} SUMMARY:${eventDetails.title} DESCRIPTION:${eventDetails.description} LOCATION:${eventDetails.location} END:VEVENT END:VCALENDAR`;
const blob = new Blob([ical], { type: 'text/calendar;charset=utf-8' }); const url = URL.createObjectURL(blob);
const link = document.createElement('a'); link.href = url; link.setAttribute('download', 'N-FIS-Webinar.ics'); document.body.appendChild(link); link.click(); document.body.removeChild(link); });
// Zoom Meeting document.getElementById('zoomAdd').addEventListener('click', function(e) { e.preventDefault(); alert('Zoom meeting link will be provided after registration.'); });
// Microsoft Teams document.getElementById('teamsAdd').addEventListener('click', function(e) { e.preventDefault(); const url = `https://teams.microsoft.com/l/meeting/new?subject=${encodeURIComponent(eventDetails.title)}&startTime=${new Date(eventDetails.startTime).toISOString()}&endTime=${new Date(eventDetails.endTime).toISOString()}&content=${encodeURIComponent(eventDetails.description)}`; window.open(url, '_blank'); });
// Share buttons const shareButtons = document.querySelectorAll('.share-icon'); shareButtons.forEach(button => { button.addEventListener('click', function(e) { e.preventDefault(); const platform = this.classList.contains('facebook') ? 'facebook' : this.classList.contains('twitter') ? 'twitter' : this.classList.contains('linkedin') ? 'linkedin' : 'whatsapp';
shareOnPlatform(platform); }); });
// Format helpers function formatDateForGoogle(dateString) { const date = new Date(dateString); return date.toISOString().replace(/-|:|\.\d+/g, ''); }