var fDesc=new Array(); fDesc[0] = "FSChart is an F# functional wrapper over the Microsoft Chart Control. It allows the creation of complex charts in a compositional manner and with a fluent syntax, that makes it well suited for the interactive data exploration scenario. It allows to benefit from (a strict subset of) its rich feature set while avoiding the unpleasant experience of manipulating a gigantic nested mutable object from F#."; 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 = ''; } }