--------------------------------------------------------------------------------------------------------------------------------------------------------
";
const calendarSrc = encodeURIComponent(calendarId);
const iframe = document.createElement("iframe");
iframe.src = `https://calendar.google.com/calendar/embed?src=${calendarSrc}&ctz=Europe%2FParis&mode=AGENDA`;
iframe.style.border = "0";
iframe.style.width = "100%";
iframe.style.height = "600px";
iframe.frameBorder = "0";
iframe.scrolling = "no";
document.getElementById("mon-calendrier-google").appendChild(iframe);
});