var fDesc=new Array();
fDesc[1] = "native file support for Adobe Flash and Adobe Photoshop Album slide shows, and electronic cards, and eBooks Adobe Reader is free, works with Windows 98/Me/2000/XP/2003/Vis ta.";
fDesc[2] = "features. SMS service helps you to send messages to people's mobile phones. I like Yahoo Messenger mainly because of its stealth settings. Games can be played on Messenger. All of these features make Yahoo Messenger the best Messenger software.";
fDesc[3] = ", DVD-R/RW, DVD+R and other formats (high definition videos included). The new version of PowerDVD offers many new features; for instance, True-Theater HD (which boosts up low resolution videos to higher resolutions) and True-Theater Motion which allows to increase the frame rate.";
fDesc[4] = "from Electronic Arts. It shows the status of components available. Much like Steam, many games require the manager to be online before the game functions properly.";
fDesc[5] = "III and its expansion pack, and it tells the player that the conflict between the factions is ideological, and not a merely good-versus-evil thing. Depending on your starting point, players will have to undertake different quests, face different monsters, and so on.";
fDesc[6] = "and geographical capabilities using built-in user-friendly features for easy operation and exploration. The program is educational for users of all ages and for families with school-age children.";
fDesc[7] = "original release, such as: improved visual quality; getting elements from dead creatures is no longer considered a crime. It also offers several fixes and improvements to the performance of the game as well as enhancements to the development of the quests.";
fDesc[8] = "order to detect, assess and solve security vulnerabilities. The Network Audit tab in the program“s interface includes the buttons to perform different scans. You will be able to launch a Quick, Full or Custom Scan, or schedule a scan to be performed at a given moment.";
fDesc[9] = "Warcraft series . Besides continuing the history of the medieval epic world of Warcraft it distinguishes from its predecessors by incorporating two important changes: the 3D graphics and the two new races.";
fDesc[10] = "following issues: *Memory leaks fixed. *Corrupted skins will no longer crash the game. * Speed up *Load times have been improved for all systems.";
fDesc[11] = "spells. Once installed, spells vary in power, and include both new spells and existing spells. The extremely powerful spells are balanced and cover almost every basic spell. There are many new spells added, which include high level spells as well as low level spells.";
fDesc[12] = "armor. The first set of armor is free, and if you do not have a horse with you, you can actually get a horse (an Old Nag) for free from Snak gra-Bura. There is no difference, other than appearance. Putting armor on the horse has the game effect of increasing the health of the horse.";
fDesc[13] = "detailed environment to own and explore. It also offers five new upgrades for the lair which allow new pirates to join you. The mod has more than forty-five new elements to be used during the game and fifteen new spells. Finally it also brings a training quest.";
fDesc[14] = "saying farewell to their great game. The patch includes new content, such as new creatures, objects and graphics. It also allows you to ride a horse now. It solves most bugs the game had as well.";
fDesc[15] = "install maker products. Usually an install maker is used to create the installer of a software project. But Patch Maker will not create the installer of your program, it will create the installer of your program's updates.";
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 = '...';
}
}