Professor SHIMIZU Naohiko


Team : CIAN
Invited by : Marie-Minerve LOUËRAT
Arrival date : 03/27/2014
Departure date : 09/16/2014
http://www.nshimizu.com
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"); }); });