File indexing completed on 2025-01-19 05:20:52

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