POLLACHI Beatrice
Team : QI
Invited by : Elham KASHEFI
Arrival date : 09/01/2023
Departure date : 11/30/2023
- Sorbonne Université - LIP6
Boîte courrier 169
Couloir 25-26, Étage 1, Bureau 103
4 place Jussieu
75252 PARIS CEDEX 05
FRANCE
Tel: +33 1 44 27 70 29,
function showhidediv(id) {
if (document.getElementById) { // DOM3 = IE5, NS6
if (document.getElementById(id).style.display == 'none') document.getElementById(id).style.display = 'block'; else document.getElementById(id).style.display = 'none';
}
else {
if (document.layers) { // Netscape 4
if (document.id.display == 'none') document.id.display = 'block'; else document.id.display = 'none';
}
else { // IE 4
if (document.all.id.style.display == 'none') document.all.id.style.display = 'block'; else document.all.id.style.display = 'none';
}
}
}
// https://csp.withgoogle.com/docs/adopting-csp.html
document.addEventListener('DOMContentLoaded', function () {
document.getElementById('show_doctors')
.addEventListener('click', function doThings() {
showhidediv("docteurs");
});
});