Committees

From QIBA Wiki
Jump to navigation Jump to search

QIBA Committee Organization Chart July 2018

  • Airway Measurement TF



  • Profile Compliance TF
  • FDG-PET UPICT TF
  • System Dependencies/Phantom Testing TF
  • Clinical Applications TF
  • System Dependencies/Phantom Testing/Clinical Validation

See Also

MR Committees

function myFunction() {

   document.getElementById("myDropdown").classList.toggle("show");

}

// Close the dropdown menu if the user clicks outside of it window.onclick = function(event) {

 if (!event.target.matches('.dropbtn')) {
   var dropdowns = document.getElementsByClassName("dropdown-content");
   var i;
   for (i = 0; i < dropdowns.length; i++) {
     var openDropdown = dropdowns[i];
     if (openDropdown.classList.contains('show')) {
       openDropdown.classList.remove('show');
     }
   }
 }

}