var fDesc=new Array(); fDesc[0] = "Tellervo is a desktop application for measuring, curating, and analyzing dendrochronological samples. It works in conjunction with Tellervo Server, which stores all the data and descriptive metadata about your samples in a relational database. The architecture of Tellevo means that it is easy for different users within a lab to store their data together and to work collaboratively. With the right login details, users can access their Tellervo Server from across the Internet. It is, therefore, possible to share data and collaborate with users from other laboratories too."; 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 = ''; } }