var fDesc=new Array();
fDesc[1] = "use. Whenever a more recent version of any programme becomes available, Software Informer notifies you and offers a link for downloading the update. It also allows you to keep track of comments and questions on corresponding software.";
fDesc[2] = "sytem that is available whether it be Windows, Free BSD, Mac or Linux. As the name suggest it natively creates compressed RAR files which is a much better compression format as compared to the popular ZIP format.";
fDesc[3] = "tools as in Microsoft Office, Writer, Cal, Draw, etc but in a freeware version. It is easy to use and install and you can also open extensions such as .doc, .xl, etc.";
fDesc[4] = "PDF format to as the standard for giving downloadable information pages or printable forms. This software helps you do all the operations on a PDF file, like inseting password, converting images to text, compressing and reducing file sizes, etc.";
fDesc[5] = "you if you use Firefox regularly. The looks are a bit different, but what makes this browser different is the integration of several social networking and multimedia sharing services.";
fDesc[6] = "is a very easy to use program in which you can tag your files getting tag information from several sources. As many other tagging solutions tag retrieval is available from freedb but is also possible to retrieve tags from amazon.com, amazon.de and discogs.";
fDesc[7] = "developed, inserts pictures, tables, hyperlinks, anchors, forms, PHP code, comments, etc. for making web pages in a very quick manner, editing them in What You See Is What You Get (WYSIWYG) mode, so anything is done is immediatly seen.";
fDesc[8] = "viewer standard, dethroning the Adobe Acrobat. A very important detail is that this application you can use it legaly without spend a buck since its a freeware.";
fDesc[9] = "used as background to create funny and interesting images. What is more, the program includes hundreds of masks to choose from, various clip arts, funny and sweet cartoon figures, frames, outlines and the possibility to include text to make your photos even more attractive and interesting.";
fDesc[10] = "secure distribution and collaboration. With Acrobat Standard you can: * Combine and arrange documents * Manage shared reviews * Use familiar review and commenting tools * Save in Microsoft Word * Capture web pages * Sign documents digitally * Etc.";
fDesc[11] = "your pictures. The program offers a vast variety of different bright frames, backgrounds and clips which you can insert into your pictures or photos. You can also write text comments into your pictures.";
fDesc[12] = "tutorials or presentations.This program comes with a user-friendly control panel for which no expertise is required. This program is compatible with all ranges of systems.";
fDesc[13] = "any web page. Read other's comments. Private message them. Comment the overall page, specific text, or any picture.";
fDesc[14] = "all of the Visual Basic.net versions to C#. C# is an object oriented language from Microsoft and is derived from C and C++. The program supports the 2003, 2005 and 2008 VB.Net versions. This application also supports all project types, including Win Forms, Class Library, Web and Compact Framework.";
fDesc[15] = "are needed) to our photo collection. We can open any folder that has JPEG images and view them (one at a time) in a window on the left, using the internal viewer. We can add any comment that comes to our mind, writing it in the box provided.";
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 = '...';
}
}