var fDesc=new Array();
fDesc[0] = "A typical language survey may involve determining linguistic relationships through the comparison of word lists. WordSurv is designed to aid in this task. It functions in three main areas:
-entry and maintenance of word lists and cognate decisions,
-computation of lexicostatistic and phonostatistic measures of similarity, and
-output of data and results in various formats.
WordSurv also supports the COMPASS algorithm to aid in comparative reconstruction.";
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 = '';
}
}