var fDesc=new Array();
fDesc[1] = "each keyboard key. You can specify keys and related sounds by yourself, thus modifying any existing scheme or creating a new one. The program will help you to get many other schemes, as it provides the option to download new schemes from its home page.";
fDesc[2] = "Screen button, but allows you to do more in a single keypress.";
fDesc[3] = "The screensaver shows a sequence of 3 animated scenes of stunning landscapes, with waterfalls as the main attraction. It works with minimal system requirements, and on all Windows operating systems, including Vista.";
fDesc[4] = "two hot keys: one to hide the windows and show them back, and one to show the Settings window. The program then runs in the background and responds to the hot keys.";
fDesc[5] = "in one keypress and use different graphical tools to highlight important fragments.";
fDesc[6] = "download sites. The semi-automatic form fill and power-paste features greaty simply the manual form submission process.";
fDesc[7] = "alarm, etc. Languages: English & Hungarian";
fDesc[8] = "this special season of the year. The setting includes detailed designs of flowers and butterflies of all colors, with an animated windmill that spins around quietly.";
fDesc[9] = "computer according to keywords you have selected or perform websearches faster and easily than before.";
fDesc[10] = "One keypress launches the utility - then just start typing. As you type the best matches are shown - just hit the number to launch it.";
fDesc[11] = "manner as you do with the TV, VCR, HiFi and similar equipment with a simple infrared remote.";
fDesc[12] = "select events to provide your own response. Send keyboard and mouse input to any open window.";
fDesc[15] = "waves lapping on the island's coast. You can listen to your own songs instead of the screensaver's sounds and customize the screensaver in some other ways.";
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 = '...';
}
}