var fDesc=new Array();
fDesc[0] = "FFTW Library for scilab-5.1.1 provides a set of fftw functions.
This is a scilab interface for fftw library v.3. It provides a set of fftw functions. Both source and pre-compiled library of interface are provided (linux and windows). Scilab documentation is also provided.
FFTW is a GPL software, developed by Matteo Frigo and Steven G. Johnson.";
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 = '';
}
}