var fDesc=new Array();
fDesc[1] = "compare it with the previous edition, so if you are already a Peggle player don’t expect many news of this new version. To pass each level you must hit all orange pegs in the screen before running out of balls to shoot.";
fDesc[2] = "exact current time. Provided by free by WorldTimeServer.com, home of accurate times worldwide.";
fDesc[3] = "same with others across the Internet in a simple and effective way. The software comes with inbuilt features such as imagery, street maps, historical maps, shaded relief, topographic maps and such other relevant features.";
fDesc[4] = "create their own multimedia productions including professional producers who require an authoring program that features a Commercial License that enables them to sell the work they produce in the program such as DVDs, CDs, graphics an photographic images.";
fDesc[5] = "software that deals specifically with GIS data, making mapping and plotting easy and fast since spatial data can very quickly and easily be identified.";
fDesc[6] = "complete application solution for creating 3D animation shows, with music, video and photo conversion, and editing features, and the ability to produce video for the iPod, PSP, YouTube platforms.";
fDesc[7] = "program can be used by anyone interested in learning/improving his or her command of Chinese, from complete beginners to advanced students, including native Chinese speakers.";
fDesc[8] = "connection with one of the several atomic clocks maintained by the United States National Institute of Standards and Technology. WebTime 3.8 checks the time on your PC´s internal clock and corrects it with the time of the Atomic Clock Server.";
fDesc[9] = "(National Institute of Standard Time) Internet Time Service or LAN time servers.";
fDesc[10] = "These analog clock are always accessible, before eyes, with synchronization your local PC time using the Internet.";
fDesc[11] = "PC and the remote host. Classic traceroute wrapped into a much more convenient, easy-to-use package.";
fDesc[12] = "saves all statistics about changes in a user’s glucose level for a certain period of time. The program can be very useful for people who has diabetes and for doctors who institute therapy.";
fDesc[13] = "atomic clocks maintained by the United States National Institute of Standards and Technology.";
fDesc[14] = "enter or space.";
fDesc[15] = "input rhythm through a microphone, which the program then analyzes and replaces with real drum sounds. There's always a catch, isn't there? Humbeats is a BeerWare licence program. That means that if you like the program, you have to send us a beer. Preferably brewed in your own home country. When you send us a beer, we will give you a personal serial number that you need to get full functionality. What's full functionality? Ability to export your rhythm as a WAV and MIDI file.";
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 = '...';
}
}