var fDesc=new Array();
fDesc[1] = "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[2] = ", for Mac OS and for Windows. The application allows us to download updates for the following programs: Quicktime Player, iTunes, Safari for Windows, or Quicktime Player + iTunes together.";
fDesc[3] = "for instance, games, chat applications in webpages, image visualization, among others, that were written with the Java scripting language.";
fDesc[4] = "photos (pictures) to email, send to mobile phone, create calendars, slide shows, greeting cards, print pictures or output files, etc. from images captured by camera, scanner, or whatever digital mean, or from existing pictures on the Hard Disk or other removable memory media.";
fDesc[5] = "configurable popup calendar that opens when the systray clock is clicked. No more double clicking on the clock just to view the calendar in the Date and Time Properties dialog box.";
fDesc[6] = "card, removable drives, floppy disks, etc. These files (or folders) stay in the system once they are deleted because of accidental actions, formatting, Windows reinstallation, hard disk failure, empty the Recycle Bin, partition errors, by mistake, etc.";
fDesc[7] = "in the latest versions. The emulator is capable of running Playstation 2 games at decent frame rates and it emulates every single feature of the original PS2 console.";
fDesc[8] = "available Updates for various Softwares installed on his/her computer. It also allows you to see details about any installed software or Uninstall it .";
fDesc[9] = "personal details of every member of the family, as his birth date, gender, date of death, email, as well as phisical details, relevant notes and every detail you should need, including photos.";
fDesc[10] = "This tool stays in the system tray and also manages to change the look of your system clock and calendar with various skin change options.";
fDesc[11] = "an option for Date view also. Time format can be changed to 12 or 24 hours (AM-PM) It also offers the Time synchronization with the Atomic clock standard.";
fDesc[12] = "every file present on the current drive with its last modification’s date and time, size of the file, attributes like hidden or read only or write only, etc. Not only that, the sorting of the files can be done by date created, modified or by size, name, etc.";
fDesc[13] = "full year and of individual month of 25 types. You can also set dual calendars, date conversion between the already named calendars plus Aztec Tonalpohualli, Aztec Xiuhpohualli, Balinese Pawukon, Thai solar, old Hindu Solar, old Hindu Lunisolar and Mayan date formats.";
fDesc[14] = "view the current time and date of five cities, that you can choose, all around the world. It will be very helpful for users who are working for clients living in different parts of the world or whose relatives and friends are living far away.";
fDesc[15] = "The program has a very simple and easy-to-use interface. You can select files with certain extensions for changing their date.";
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 = '...';
}
}