var fDesc=new Array(); fDesc[0] = "CurlyWhirly is an application for viewing multi-dimensional data, with a particular focus on the outputs of Principle Coordinate Analysis and Principal Components Analysis. It features: 3D display of multi-dimensional data, rotate the graph by dragging on the display, zoom in and out of the data set, automatic rotation, and filtering of coloured data points by selecting/de-selecting categories."; 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 = ''; } }