var fDesc=new Array();
fDesc[0] = "JustNN is a simple and easy to use neural network application.
Features:
- Import text, csv, spreadsheet, image or binary files into the Grid.
- Use many editing and pre-formatting functions on the grid.
- Build neural networks from the grid.
- Train, validate and query the neural network.";
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 = '';
}
}