var fDesc=new Array();
fDesc[1] = "notification. You can manage all of your conversations in a single message window. Besides, you can send your friends an SMS from your PC with ICQ. Your friends can SMS back from their mobile directly to your ICQ message window.";
fDesc[2] = "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[3] = "the screen. Current version is capable of capturing the whole desktop, a highlighted window, an active menu, or a fixed or free rectangular part of the screen.";
fDesc[4] = "annotation, arrows and other objects to create professional screenshots for inclusion in online tutorials, Word documents, manuals, promotion material, presentations, websites, emails and so on";
fDesc[5] = "customizations to suit your needs, including timed capture, capture Hotkey, Saving to File directly or to Clipboard, capturing a region,active window or full screen it has all the basic required features.";
fDesc[6] = "program has the ability to capture the full screen, an active window, an active window client, or any part of the screen in the form of a rectangle, square, ellipse, circle or polygon in a snap.";
fDesc[7] = "increase your PC’s performance while you are working. This utility will automatically switch the foreground program to the highest priority. This program can also increase you PCs free RAM, increasing the general performance of your computer as well.";
fDesc[8] = "entire desktop, an active window, a predefined area, or a user-selected area of the screen for printing. Besides, you can edit the captured text before printing.";
fDesc[9] = "are generally found in graphics editors. Its interface is amazing and you can handle like any other graphical editor even animations can be created with it.";
fDesc[10] = "capabilities to transform the whole screen, the active window, or a selected area, into text, an image, or a table. All of these can be automatically stored in your clipboard for later use, while text and tables can also be exported to Word, Excel, RTF, CSV, or TXT files.";
fDesc[11] = "use. There are many applications like this and most are even inbuilt with Windows. However, this one has some nice features that I would like to share with you. As many others, ZScreen allows you to take screen captures of your whole screen or a region of it.";
fDesc[12] = "windows caption buttons (those three buttons on the right of each window), when you click on the right button of your mouse when pointing to them. For example, right clicking on the minimize button will minimize the active window, but to the system tray.";
fDesc[13] = ", scrolling window into all kinds of image formats including pg, jpeg, gif, png, tiff, bmp and pdf etc.";
fDesc[14] = "images. It offers a great variety of filters and effects to apply to your images and also enables you to draw lines and shapes as well as apply layers and capture screenshots of your screen, an active window or a region.";
fDesc[15] = "active. The main purposes of this useful program are: 1.- Desktop systems: easier and more comfortable work. 2.- Laptop units: significant power consumption reduction. For both, the advantage is the eye fatigue reduction.";
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 = '...';
}
}