var fDesc=new Array();
fDesc[0] = "Features
- Minibrowser to handle pictures for an online purpose (but you can add everything that loads in your browser).
- Make several lists of files: you can add lists as long as your computer can handle them.
- Since the core of the software is the file list, you can add pictures using several ways";
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 = '';
}
}