var fDesc=new Array();
fDesc[0] = "FuzME is a PC Windows program for calculation of Fuzzy k-means with/without extragrades. It is written in Fortran and compiled using Compaq Visual Fortran 6.6 under PC Windows environment. The program needs a "control file" which details the parameters for the fuzzy k-means algorithm and a "data file" containing the data. The program only works on system running under Windows 95/ NT or later.
"FuzME interface" is a Visual Basic program that helps to create the "control file" and runs the program. To run the program double click on the "FuzME interface.exe" icon.";
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 = '';
}
}