var fDesc=new Array();
fDesc[1] = "Notation (RPN), etc. calculations. Logarithmic functions, graphical output, resolution selection. Hexadecimal, decimal and binary outputs. User functions.";
fDesc[2] = ", 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[3] = "corresponding color code (HTML, RGB, C++, Visual Basic, etc) of any color you see in your screen. With Color Cop you can also increase up to 16 times any area of the screen since it has an incorporated zoom tool, so you will not miss any detail in a graphic no matter its size.";
fDesc[4] = "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[5] = "displayed on your screen, in order to export it to your designing software. Well, ACA Color Picker is the program that can help you in this simple task. With this application, you can pick a color of any part of your screen easily, and export it to different format codes.";
fDesc[6] = "figures. Its fast , nice and intuitive interface makes anyone able to manage it in seconds after being installed.";
fDesc[7] = "hexadecimal/decimal conversions and fractions/decimal conversions. It provides you with range of features like expression editing, prefix functions and scientific functions like Trigonometric, Hyperbolic & Logarithmic.";
fDesc[8] = "color picker has a small and compact Windows-style interface that couldn't be easier to understand, and you can even set your own hot keys to select your colors and values from the program's icon while it sits unobtrusively in your taskbar.";
fDesc[9] = "different measures. The program can convert numbers between decimal, binary, hex and octal. This easy-to-use software will convert the numbers automatically as you type the numbers on the program's main window.";
fDesc[10] = "interesting for web designers. The program provides quick conversion of color between decimal and hexadecimal values. The program has very simple and easy-to-use interface.";
fDesc[11] = "hexadecimal numbers from one into another. All you have to do is type a number on any of the mentioned units and the exact results you were looking for will be displayed.";
fDesc[12] = "which are commonly used in the Imperial measurement system. Plus, the radius of circumferences can be calculated and much simpler operations can be done, such as additions, subtractions, divisions, etc. It also converts cm to inches and vice-versa.";
fDesc[13] = "at once, replacing text, characters, decimal or hexadecimal values. As the program does not need to load an entire file into the memory, you can edit very large files with no memory compromise. You can replace just one value, or several values.";
fDesc[14] = "colorful and easy to use. Fully functional - no disabled features. Supports hex, decimal, ascii, multiple export features. Built in search and stats.";
fDesc[15] = "displayed as integers and floats of various sizes. The user can search and replace, and undo changes when needed.";
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 = '...';
}
}