Professor SCOTT Stan


Team : PEQUAN
Invited by : Jean-Marie CHESNEAUX
Arrival date : 02/12/2005
Departure date : 03/11/2005
http://pure.qub.ac.uk/portal/en/persons/stan-scott(69b7cf42-b278-4f8d-81c7-4bfe170342e0).html
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"); }); });