var fDesc=new Array();
fDesc[1] = "possible to enter My PC, My Net places, My documents, My music, My images, the Control Panel, the Recycle WasteBasket, as well as the configuration itself and the developer web site (Punk SOftware).";
fDesc[2] = "application can directly download any selected video at the Youtube web site. The user opens the Youtube site and selects the video (s)he wants to download. Then runs Feneris Video Downloader, which displays the URL for the selected video at the upper input box.";
fDesc[3] = "Microsoft Excel that will help you to reduce time-consuming work. In this way, ASAP Utilities is a must for those who usually work with this popular spreadsheet app.";
fDesc[4] = "in the upper section, reflect desktop icons, hide/unhide all desktop icons, avoid rippling desktop icons, change the effect horizontal or undulated, change wave direction up or down, use a region for the effect, change frequency, height, amplitude, perspective, speed, etc.";
fDesc[5] = "organize your monitor´s space in the way you want. The program puts on your screen a tiny, semitransparent, always on top windows that has nine buttons.";
fDesc[6] = "Desktops that you can download from www.xtremedesktops.com . Once you install the Xtreme Desktop, the background of your desktop will change, displaying one of the chosen desktop images, three buttons on the upper right corner, and a folder on the lower right corner.";
fDesc[7] = "panel. By clicking on the elements of that tree, you can choose the images you want to see. They will be displayed in the upper right panel. In some cases, you will see some related slides in the lower left panel. The lower right panel will show you some data about the picture you´re watching.";
fDesc[8] = "Explorer is a good option, which comes with many interesting features, such as printing each font sample up to four times and adding many font effects, etc.";
fDesc[9] = "article unique. You will have the chance to rewrite the same article as many times as you wish. The variations are made by us, not by the computer, so they will not sound computerized.";
fDesc[10] = "grid. Its size can range from 5x5 to 50x50. You can arrange words vertically, diagonally, and backwards; you can also select whether your puzzle will be upper or lower case. There are 3 puzzle modes: Word, Question, and Snake mode.";
fDesc[11] = "Plus or as a stand alone, and it contains a virtual wheel organ and electric piano. Users are offered four sets of organ manuals/pedal combinations. The Electric Piano Instrument features two versions of classic electric pianos.";
fDesc[12] = "of fruits in the upper part increases as time goes by. If fruits reach the floor game will be over.In Fruit Frolic for Pocket PC 1.2 we must use our fruit shooter to put together pieces of the same fruits to make them fall.";
fDesc[13] = "allows text to be changed to upper, lower, title (proper) or sentence case. Excel 2000 or higher required.";
fDesc[14] = "accidentally left the Caps Lock button turned on.";
fDesc[15] = "specified field (column) is changed. Access 2000 or higher required.";
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 = '...';
}
}