var fDesc=new Array(); fDesc[0] = "Team Play ABG is a fun-filled application that allows up to four teams of players the opportunity of challenging each other for the title of "Expert ABG Interpreters".

Teams may choose Basic Blood Gases or Advanced Blood Gases to interpret. Basic Blood Gases gives the pH, PaCO2, and HCO3 to interpret while Advanced Blood Gases gives only the pH and PaCO2 to interpret."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }