var fDesc=new Array();
fDesc[0] = "Xinorbis is a hard disk analyzer. Using a sophisticated mix of graphs, tables and tree displays, it gives the user a complete overview of the contents of a hard disk, folder, removable or network drive.
It makes it easy to see the contents, structure and file distribution and file composition of a whole hard disk, directory, or mapped network drive. It includes full report creation. Xinorbis is bundled with the Be. HexEditor and options to view a file within the hex editor have been added to all relevant popup-menus.
Xinorbis supports seamless integration with SQlite3 or ODBC for its Folder History data archive. Compare the contents of a hard drive or folder at any time or date.";
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 = '';
}
}