var fDesc=new Array();
fDesc[1] = "and easy to manage. It guides user throughout the whole process, without needing any programming skills. Step by step, any user can build a web site without any programming knowledge.";
fDesc[2] = ", complete and expandable. The concept behind the interface and work methods in Maya are extremely smart, and the program offers extreme control over every aspect of your work. The learning curve is steep though, so you will need to invest time in order to master this 3d beast.";
fDesc[4] = "houses which you rent and collect the money every month, and you also own some empty lots on which you can construct new houses. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[5] = "music, dancing with your fingers, tapping on the keyboard movement keys. Using the beatbox feature you can record your own music to use it later to play the game with it.";
fDesc[6] = "pages into single executable files, and ultimately into working stand-alone Windows applications, which literally resemble a normal web browser.";
fDesc[7] = ", Challenge Mode, Relax Mode and Expert Story. The Story mode will tell you a story, where you receive by mail blueprints for a machine, you build it, and the result is a robot that makes burgers. You decide to run a burger shop.";
fDesc[8] = "cannons or puting your enemies into a collisions with a reef. With all your enemy ships cleared, you will advance to the next level. The game has an introductory tutorial that will explain you briefly how to play Seven Seas.";
fDesc[9] = "introduction showing the arrival of Dr. Humerus to the Heartland Hospital. Needless to say, you will be guiding Dr. Humerus in his quest to gain fame and fortune by healing patients and exploring the world.";
fDesc[10] = "interfaces for different age groups and abilities. There are over 221 lessons and 103 custom lessons included in the Mavis Beacon Teaches Typing Deluxe 17.0 program and ergonomic evaluation videos are included.";
fDesc[11] = "the spoken commands to run programs, interact with Windows and dictate words into word processing programs, such as WordPad, or to fill out on-line forms. Voice and Speech Recognition can also be used to edit text on the computer. It comes with a speech training tutorial.";
fDesc[12] = "version 1.05: 1) Default printer detection; the user is prompted for target printer if default not found.";
fDesc[13] = "which movies to show. For those who have played the previous version of the game, the interface will look familiar. It’s a bit restyled though. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[14] = "amusing and it has got an entertaining storyline. The main objective of the game is to get as much clients as you can, in order to do that you will be able to use many upgrades.";
fDesc[15] = "is as fun as its prior version and has a totally redesigned scenario (fast food stand). You can try this game for 60 minutes before you buy the licensed version.";
fDesc[16] = ", you will have to buy upgrades, set prices, manage your snack bar, hype your Cinema, train your staff, and much more. Cinema Tycoon has three different game modes: Mogul, Megaplex Star and Cinema Czar.";
fDesc[17] = "like to be recorded, and the recording will later be converted to an animated tutorial. This program also provides a unique plug-in for Microsoft PowerPoint, through which a PowerPoint presentation can be converted into animation directly.";
fDesc[18] = "to master this complex application. The guide provides all the information you need in a clear and simple way combining graphics, videos and text for you to see the different available options and how to use them.";
fDesc[19] = "applications. Enjoy full visual design and editing of Windows forms. Create dialogs in seconds with code templates. ASP.NET supported.";
fDesc[20] = "decide if you prefer to slide objects or swap 'em in a wonderful variation! Of course, all your favorite puzzle features are here too. Featuring an in-game tutorial and editor to make your own levels.";
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 = '...';
}
}