var fDesc=new Array(); fDesc[0] = "SigViewer is a powerful viewing application for biosignals, originally designed to display electroencephalographic (EEG) data.

SigViewer now supports several biosignal data formats through libbiosig4c (for example GDF, EDF, CNT, EEG, and many more).

Besides displaying biosignals, SigViewer supports creating annotations to select artifacts or specific events.

SigViewer also features signal processing modules, for example it is possible to calculate the average and the power spectrum of selected signals."; 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 = ''; } }