var fDesc=new Array();
fDesc[1] = "machine. Use our unique Binary Templates technology to understand any binary format. Includes a whole range of powerful analysis and editing tools.";
fDesc[2] = "contents. Integrated into windows properties pages Hex Editor is easily accessible and has intuitively obvious interface.";
fDesc[3] = "english, of the pixel where the mouse is pointing. You can also copy the HTML hex code to the clipboard.";
fDesc[4] = "network computers instantly, supports searching within compressed archives and duplicate files on your system.";
fDesc[5] = "working with colors and computers. It is a small program that can be taken around in any portable devices. This tool provides the RGB value for any pixel that we select with our mouse cursor.";
fDesc[6] = "files. A user can explore through Windows PE resources without opening each and every file. The tool helps in copying the images displayed in Windows explorer by integrating this tool with Windows shell.";
fDesc[7] = "addition to the three slidersthat let you interactively previewcolors,Colour Mouse's Colour Grab featurelets you view and capture th...";
fDesc[8] = "by giving different amounts of red, green and blue, and the software will then give you the HTML, long and HEX code to use the color.";
fDesc[9] = "DisAssemble the hex code and It will show you the complete CODE memory map. It will help you to realize the exact picture of the code memory.";
fDesc[11] = "using SlideBars, you can select the color you want and the program will tell you the Hex code to use. Requires the VB 4.0 Runtimes.";
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 = '...';
}
}