var fDesc=new Array(); fDesc[0] = "CHEMICAL REAGENT CALCULATOR is a useful tool to assist technicians and laboratory staff who needs to prepare chemical solutions and reagents. The program uses built in atomic weights in calculating the procedure for preparing Molar solutions, as well as Anhydrous and Hydrate solutions. Calculating percentage solutions is also included. The program allows the user to print out instructions as well as a label to fix to the preparation.
Making accurate solutions has never been easier!"; 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 = ''; } }