var fDesc=new Array();
fDesc[1] = "Transform your two monitors into one big desktop and tidy all your staff. It’s very easy to use and yet a very complete and tool to help you save money and complex tasks.";
fDesc[2] = "impression and seems to be well-thought, especially in terms of design. I would recommend this application to users, searching for a simple and easy-to use DVD movie player.";
fDesc[3] = "sent to the printer, or saved to disk as a file in 6 different graphics file formats . Gadwin PrintScreen can capture the entire Windows screen, the active window, or a specified area.";
fDesc[4] = "allows you to easily assign quick launching of any program by the touch of a button or by selecting from the list.";
fDesc[5] = "without pressing the two keys simultaneously as is usually required. Using Accessibility also lets you make the Fn key a sticky key, meaning you press it once, release it, and then press a function key to activate the hot key function";
fDesc[6] = "the program it is not necessary even to touch the mouse. Use Hot Key long combinations with two and more keys in one time.";
fDesc[7] = ", but users still can figure out what folders are protected and plan out a strategy to crack the protection of the folder. MySecretFolder takes a rather different approach.";
fDesc[8] = "windows, is a short-cut keyboard (hot-key) that enable a quick change between applications or windows. This utility or feature have been present since Windows 3.0 and has not changed much in the actual version of windows.";
fDesc[9] = "it (program short cuts, system commands, etc.) as well as change its look by \"skinning\" it.";
fDesc[10] = "allows you to read PDF, RTF and HTML files. You can read any selected text from a Microsoft Word document, web page or Notepad by just pressing the \"CTRL+T\" hot key. Speak Aloud supports batch conversion and is capable of converting texts to speech stream in SWF format.";
fDesc[11] = "makes it possible for developers, designers, bloggers, etc., to easily create and manage MySQL databases. The program's interface proves to be very smart and user-friendly, with many tools and helpful wizards.";
fDesc[12] = "pointer is. It is not always easy to know, and sometimes this annoying situation can drive you crazy while you are moving your mouse from one side to the other, looking for the pointer. But from now on, this is situation is over thanks to CrossHair.";
fDesc[13] = "resources and space on your drive to perform. It has a very simple interface with a few settings, so you won’t have any problems while using it.";
fDesc[15] = "Remove Hot Keys whenever not required";
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 = '...';
}
}