var fDesc=new Array();
fDesc[0] = "NeuroExplorer is a powerful data analysis program for neurophysiology.
It provides features such as:
- Spectral analysis of spike and continuous data
- 3D data view and animation
- Fully customizable WYSIWYG graphics
- Shift predictors in crosscorrelograms and color markers in perievent rasters
- Joint PSTH, burst analysis and many more analyses of timestamped data.";
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 = '';
}
}