var fDesc=new Array();
fDesc[1] = "can download the free demo version and play it for 60 minutes. It features nice graphics and lots of different games and puzzles.";
fDesc[2] = "texts right from the clipboard, announces time and does much more, through animated talking characters that can be changed.";
fDesc[3] = "to know your territory, so you will find a world map and there you will see forests, mountains, rivers, lakes and plains to explore with your armies, as you try to make your cities and heroes thrive.";
fDesc[4] = "Software’s eBook to Images can now convert your text files into images that will fit your handheld device’s specifications. It opens most well-known text documents (like DOC and PDF) and transforms them into small image files that you can read in your iPhone, Zen or PSP.";
fDesc[5] = "has three characters: Peedy, Genie, and Merlin that helps you to play the game. You can select the level of difficulty, add, edit, delete, export or import: spelling list, multiple choice, math, and lessons.";
fDesc[8] = "to find in an application like this. You can add your eBay auctions and track them over time and you can use the program to snipe your auctions.";
fDesc[9] = ", improved artificial intelligence, 4 new opponents, and optimization for Windows Vista. Imagine Poker version 3 welcomes Genghis Khan, the Grim Reaper, Marie Antoinette, and the Aussie legend, Ned Kelly!Play Texas Hold 'Em Poker on your PC against 20 beautiful and fully animated characters that include Cleopatra, Julius Caesar, Napoleon, Genghis Khan, Dracula, the Mona Lisa, Abraham Lincoln, the Tooth Fairy, Stalin, Robin Hood, Blackbeard, Merlin, and 8 more! Even the Abominable Snowman traveled all the way from Kathmandu to participate in the Imagine Poker tournament!Configure your Texas Hold 'Em game with any rules and settings you like and then enter a five round tournament where you must beat all 20 characters to win! Imagine Poker features Candywriter's acclaimed artificial intelligence module that is sure to challenge even poker professionals.Create a profile from scratch and...";
fDesc[11] = "simulation. The simulation provides all the features of the real aircraft. The Spitfire is well known for its excellent maneuverability. It was one of the last fighters built with the piston engine technology hence holds the record for being one of the fastest piston engine aircraft in the world.";
fDesc[13] = "fill out the forms to post it. Merlin InstantFeedback makes it easy; it simply sits in your system tray and quietly checks your own feedback at any interval you specify watching for fellow eBayers to post for you. When they do, Merlin will automatically post positive feedback for them from a list of pre-made comments, your own custom comments, or one at random. If you should happen to get negative feedback, you will immediately be notified so you can rectify the situation quickly. You can also mass-post feedback for everyone who has left feedback for you starting back a specified number of days, whether they've left it for you or not, with just a mouse click. It even will support multiple eBay accounts ... you'll never have to worry about posting feedback again.";
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 = '...';
}
}