var fDesc=new Array();
fDesc[0] = "SymPhoTime is a fluorescence lifetime imaging and correlation software.
Features:
-Point, 2D and 3D image acquisition and analysis
-PicoQuant's LSM Upgrade Kit and SCX 200 support
-Intuitive TimeHarp 200, PicoHarp 300 and HydraHarp 400 TTTR file analysis
-Lifetime histogramming, Fluorescence time trace analysis
-TCSPC lifetime fitting of up to 4 exponential models
-Online correlation & FCS fitting to four established models
-Online FLIM ('Fast FLIM') already during the meausrement.
-Data documentation and organizing features
-Powerful graphical user interface, bitmap export options
-User programming script language 'STUPSLANG'";
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 = '';
}
}