var fDesc=new Array();
fDesc[1] = "optimizes system registry and other system files so that Windows can run fast and smoothly. The program creates a system restore point, in case something goes wrong during the clean-up.";
fDesc[2] = "is a fancy name for MP4. This converter will convert files of the most popular formats (DVD/VCD and AVI, MPEG, WMV, RM, RMVB, DivX, ASF, VOB.) into MP4.";
fDesc[3] = "your windows in any direction while switching. You can also configure advanced options related to graphic performance, general behavior, start up, and more.";
fDesc[4] = "It can scan for wireless networks and try to hack in. It can try to decrypt database files like those of dBase, Excel, MS Access, FoxPro, etc.";
fDesc[5] = "fancy stuff or complicated animations. The wallpaper consists of the VAIO logo on a colored background with a soft curved design. In this case, we are talking about a lilac background with white delictae flowers.";
fDesc[6] = "creation of a full copy of a DVD movie, locating a VIDEO_TS folder on the hard drive and burn it to a DVD disc or select several movie titles and join them together and burning audio files onto a DVD.";
fDesc[7] = "table, first and second courses plates and also the dessert. Your Master Chef Mr. Gordon Ramsey will be watching you very close, beware about all your movements.";
fDesc[8] = "the contents as if they were printed in a book. You get two pages (or one if you wish) side by side with generous margins and a clean, uncluttered interface. You can click on the pages to turn them. It has a wide choice of page styles and convenient navigation system. Bookshelf easily allows you to come back to the read books and to open them in the place where you have stopped.";
fDesc[9] = "intuitive interface allows you to load the documents you need to merge, put them in the order of your choice, and join them with just one click.";
fDesc[10] = ", select a different skin for the program, ignore read errors, remove UOPS, keep region code, shrink DVD to fit on 4.7GB disc, select the burning engine, speed, volume name, number of copies, eject disc after burning, and automatically erase DVD RW disc when burning.";
fDesc[12] = "years, when you used to be running all the time and when you had to remember something you just jotted it on a piece of paper? The only movement you will see is the numbers themselves as if you were looking at them through water or glass.";
fDesc[13] = "digital watch. No frills or fancy stuff. You will also have a monthly calendar. Free New Year Calendar will fulfill your basic needs of time and date, and will provide a great ambience to your home or office.";
fDesc[14] = "with colours and fancy letters. Not only can you make colourful names, but you can see what it will look like, using the preview window.";
fDesc[15] = "interface and dazzling full-screen graphics make this better than real jigsaws! Features: Photography from Holland, Italy, and ...";
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 = '...';
}
}