var fDesc=new Array();
fDesc[1] = "nice, easy and intuitive interface will help you manage all kind of text formats and programming languages such as HTML, PHP, Java, Perl, Javascript.";
fDesc[2] = "with the ease and flexibility of a word processor.";
fDesc[3] = "Physical Memory or Hard disk as Hexadecimal values, which is commonly used instead of the bit by bit approach. It is capable of displaying the contents of the partitions in the hard drive and lets us choose any data left over (like in forensic purposes).";
fDesc[4] = ", hex, decimal, float, double and binary data. This incredible program allows you to view, modify, analyze hexadecimal data and binary files, edit, exchange data with other applications through the clipboard, insert new data and delete existing data, as well as perform other editing actions.";
fDesc[5] = "approach. Taking a lot from Firefox and the like, XYplorer adds a tabbed interface to the everyday use of file managers. Thus, you don't have to scroll through tens of windows to find the one that you know is somewhere.";
fDesc[6] = "Change Operations. Many integrated features such as Bookmarks, Pattern Coloring, Data Inspector, attributes and many more functions makes your file editing task very easier.";
fDesc[7] = "programmers can use HexEdit to patch files or fix corrupt files such as documents and databases. Hex Edit is very stable and easy to use software which saves a lot of user’s time and effort by allowing him to track down and fix problems fast.";
fDesc[8] = "machine. Use our unique Binary Templates technology to understand any binary format. Includes a whole range of powerful analysis and editing tools.";
fDesc[9] = "contents. Integrated into windows properties pages Hex Editor is easily accessible and has intuitively obvious interface.";
fDesc[10] = ", float, double and binary data. This incredible program allows you to view, modify, analyze hexadecimal data and binary files, edit, exchange data with other applications through the clipboard, insert new data and delete existing data, as well as perform other editing actions.";
fDesc[11] = "purpose have to work in different number formats like ASCII, HEX, binary and many more. It is very difficult for user to convert number formats like HEX to ASCII or ASCII to HEX by calculating manually.";
fDesc[12] = "files can be tedious as most text editors insist on loading the entire file into memory (even if it won't fit!).LogView does ...";
fDesc[13] = "mainframe editing, program development. Fast, compact and configurable. Windows, DOS, Linux";
fDesc[14] = "incredible program allows you to view, modify, analyze hexadecimal data and binary files, edit, exchange data with other applications through the clipboard, insert new data and delete existing data, as well as perform other editing actions.";
fDesc[15] = ", decimal, float, double and binary data. This incredible program allows you to view, modify, analyze hexadecimal data and binary files, edit, exchange data with other applications through the clipboard, insert new data and delete existing data, as well as perform other editing actions.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}