// ouverture d'une fenêtre version "accessible" function OpenWindowByTarget(target, url, width, height, top, left) { var wdw; var options = "status=yes,location=yes,menubar=yes,toolbar=yes,resizable=yes,scrollbars=yes"; wdw = window.open(url, target, "top="+top+",left="+left+",width="+width+",height="+height+","+options); wdw.focus(); return false; } // activation / désactivation de l'affichage d'un élément function displayElement(elementId) { var display = document.getElementById(elementId).style.display; if (display == "block") document.getElementById(elementId).style.display = "none"; else document.getElementById(elementId).style.display = "block"; } function checkSMS() { // affichage ou non du block selon si selectSMS est check ou non if (!document.getElementById('abn_sms').checked) { document.getElementById('usr_tel_label').style.fontWeight = "normal"; document.getElementById('span_usr_tel').style.visibility="hidden"; } else { document.getElementById('usr_tel_label').style.fontWeight= "bold"; document.getElementById('span_usr_tel').style.visibility="visible"; } span_usr_tel } // impression de la page courante function pagePrint() { window.print(); }