File indexing completed on 2024-05-12 06:02:06

0001 function toggleWriteability(id_of_patient, checked) {
0002     document.getElementById(id_of_patient).disabled = checked;
0003 }
0004 
0005 // vim: et sw=4 sts=4