var fDesc=new Array();
fDesc[1] = "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[2] = "space. The speciality of this clock is its speaking capability. This clock can tell you the time in more than 30 languages. You can use the global hotkeys Ctrl+Alt+S to know the time, without moving your cursor.";
fDesc[3] = "minutes. You can preset six alarms and schedule as many events as you like, specifying when should you be reminded.";
fDesc[4] = "Reject any unwanted call, zap telemarketers with special tone or play Federal do-not-call warning to remove you from their lists - by law!";
fDesc[6] = "a CD. Publishers announce this program as the easiest and fastest CD burning application, and it really saves users time (and errors) by guiding them through the burning process step by step.";
fDesc[7] = "for professional digital photographers looking for a fast and easy-to-use image browser for digital camera files. Photo Mechanic's innovative batch captioning, renaming, speedy browsing, and Photoshop connectivity features have made it the choice of thousands of photojournalists and professional photographers worldwide. Now Carbonized for native Mac OS X and OS 9 operation, and optimized for use with professional cameras from Nikon, Canon, and Olympus, Photo Mechanic has become the standard tool for digital image browsing.Photo Mechanic is a standalone image browser that lets you view your digital photos with convenience and speed. Photo Mechanic displays the \"thumbnails\" of photos on a camera disk or folder in a familiar \"contact sheet\" display windows. You can quickly rotate, preview, copy, delete, tag, rename, and add caption / keyword (IPTC news record) information to photos both...";
fDesc[9] = "years and others brought happiness to your life, they announce the time when gifts are coming. Remember every holiday with your family, kids playing around.";
fDesc[10] = "block calls you choose, publish your call log to the web, and dial the phone for you.";
fDesc[11] = "exportable ever-new-colored alarms and startup reminders with text and voice recordable messages. It's for those who are pressed for time.";
fDesc[12] = "annoying telemarketers! Calls can be announced with pop-up windows, sounds, or text-to-speech, and can trigger email, run other programs, or hang up.";
fDesc[13] = ", customized greeting, remote retrieval, email notification, visual and audio alert, and more. Download it now!";
fDesc[14] = "synthesizer and animated character. As a new message is received, the character will pop up and read who the message is from and the subject. Di...";
fDesc[15] = "tray area. You may : quit or restart Windows, inhibit the screen saver, use a calculator, manage your phone numbers and to do list, modify automatically your wallpaper, launch applications or documents directly from the tray area, adjust automatically some windows positions, count how much time you spend using Internet, announce the time every half an hour, queryyour mailboxes, announce and display any new mail, pick up some quotes values, place a phone call, simplify connection process.";
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 = '...';
}
}