var fDesc=new Array();
fDesc[1] = "system configuration, security, cleanup and maintenance now optimizes Windows Vista as well";
fDesc[2] = "basic text editor. Editpad Lite contains a tabbed interface from where you can quicky switch among open files by clicking on their tabs.The tabbed interface also helps in reducing unnecessary cluttering on the workspace.";
fDesc[3] = "options. It also can record the screen output and capture texts. SnagIt editor is used to edit the captured images or text. The program has great features but it also has rather high price.";
fDesc[4] = "interfaces to ensure that data remains safe when the computer is unattended or for public use, such as those in an open environment. It also prevents data from being copied to external storage media, such as an optical disk, flash drive or floppy disk.";
fDesc[5] = "contains a powerful search tool that lets you find and download sound files (mp3, wav, midi, etc.), Image or video (movies, trailers, jokes, graphics) on the Internet.";
fDesc[6] = "convert them to wav, mp3, OGG, etc. audio files to be saved on the user PC. User can run the application directly from the Windows Command Line. The help file shows all the available options for these commands. The Help file comes in HTML format and it is displayed by the Internet browser.";
fDesc[7] = "session on a computer, over a network. PuTTY implements the client end of that session: the end at which the session is displayed, rather than the end at which it runs.";
fDesc[8] = "invites the player to form words out of them. All the levels and supplied letters are good for creating known words. The game takes care of the truthfulness: there always are words that can be created using the displayed letters.";
fDesc[9] = "computer in a VOIP (voice over IP). It looks just like a normal telephone where the the send button an the key numbers are displayed.";
fDesc[10] = "folder on your computer. You can type in a search filter to limit what files and folders are displayed. Everything only uses file and folder names and takes a few seconds to build its database. 1,000,000 files will take about 1 minute.";
fDesc[11] = "displayed information you can see the hours of the day, the weather condition in every hour, the temperature in Celsius and Fahrenheit, wind speed (mph) and its direction, etc.";
fDesc[12] = "previous editions there is no much new to tell because the game is pretty much the same, only changes its location. For those who haven’t played the previous editions of this game, let’s say that this is a strategy game related to construction and real estate business.";
fDesc[13] = "to the left of it. To mark each found word, you need to click its first letter on the game board and then drag the displayed oval over the word to the last letter. The program contains three types of games – quest, sprint and relaxing games.";
fDesc[14] = "and allows selecting from different rotation angles (0, 90, 180 and 270 degrees) and includes the possibility of HotKeys for each of the turn options. It is compatible with Windows 98 SE / Me / NT4.0/2000/XP Home Edition / XP Professional.";
fDesc[15] = "specifics of their computer. It gives even minor information about memory, CPU, and operating system of the computer. The power source of the computer is also displayed. All these information can be copied down to the clipboard and for a permanent storage it can be pasted in form of a document.";
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 = '...';
}
}