var fDesc=new Array();
fDesc[0] = "CR-Hexact is an hexadecimal editor easy to use, but it is a powerful tool because of its performance due to optimized algorithms :
- No file loading time.
- Instantaneous edition before saving modifications.
- No memory used for files.
- Optimized saving which limits disk access, providing an optimal speed.
- No temporary file used, whatever the modifications are.
- Possible to cancel all operations since the latest saving.
Main features:
- Full data interpreter (integers, floats, full asm).
- Browsing features : search, replace, bookmarks.
- Copy-Paste.
- Different modes : Exclusive writing access, instant writing, read only.
- Bytes ranges selection.
- Can synchronise the scrolling of different files, in order to make easier a comparison.
- Can compare files, and irreversibly delete a file.
- Print, and text export";
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 = '';
}
}