var fDesc=new Array();
fDesc[1] = "directly from satellite. The program is completely free, but to use it you need a DVB-PCI card with hardware decoders on the board and a SAT-dish. The application features a very simple and intuitive user interface that requires no knowledge at all.";
fDesc[2] = "similar software is the possibility to calculate the position for all satellites at once.";
fDesc[3] = "stages which are called challenges, as we must prove ourselves as top chefs. In each challenge we must create different recipes in a limited time. To create a recipe you must follow some steps. In each step you must use different flavors that must fit the ones required by the judges.";
fDesc[4] = "contact with the customers. What you have to do is to locate the correct ingredients in the kitchen and click on them. This can be harder than it sounds because the kitchen you are working at is a real mess.";
fDesc[5] = "programs from around the US and the world! Your cable company doesn't offer this! And there is no monthly fee!";
fDesc[6] = "must choose a player, or create a new one. Then, you can choose to play in the Adventure Mode (when you struggle to become a 5 star cheff) o A La Carte mode (where you´ll have to run endless shifts till you lose).";
fDesc[7] = "action takes place at Rupture Farms, where Abe and other Mudokuns are slaves. After learning that he and his fellows are going to become the ingredient for a new dish, Abe decides to escape, but not on his own; he will try to rescue his fellow Mudokons. So the odyssey begins.";
fDesc[8] = "the place and will learn how to prepare them. Hot Dish is a multitask game, just like real life cooking is. This is what makes this game really entertaining and kind of difficult to play. Keep focus and try no to loose track of the several tasks going on.";
fDesc[11] = "the Internet. You can listen to your favorite Radio without having to open many browsers or search for Radio channels.";
fDesc[13] = "interface. It allows you to search recipes by keywords, by ingredients, or by geography.";
fDesc[14] = "you can organize, upload and add recipes. This is not just an electronic recipe book; it is more like the perfect complement for your diet. This tiny, fast and unique program allows you to \"watch\" your nutrition facts per recipe.";
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 = '...';
}
}