var fDesc=new Array();
fDesc[0] = "Over write or insert mode; Support hexadecimal, decimal, octal and binary systems; File size up to 2GB (depends on the virtual memory of the computer); Print the whole file or selected part of it; Unlimited Undo/Redo; Adjustable bytes per line; Fast searching/replacing hex or text data; Compare files; Font and colour options; Opening/Saving Intel Hex Format files; Opening Motorola S Record files; Swap even and odd bytes; Copy dump to clipboard; Copy part of a file to another file or to a text editor; Go to specified offset; Fill a selected part of the file in 0, FFh, counter or random
System Requirements: Pentium processor-based personal computer,32MB RAM Memory, 2MB Hard Disk, USB 1.1/2.0 port, Windows 98/ME/2000/XP";
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 = '';
}
}