var fDesc=new Array();
fDesc[1] = "Bars\". Microsoft Engineers now thougth it would be a good idea to change all the menus in order to make easier to see at a glance, Lets wait a little and see what the users think about this new experience. I think the change is good, but not that good.";
fDesc[2] = "translations; intelligent response evaluation; powerful editor; automatic keyboard & font selection; vocabulary files in 6 languages.";
fDesc[3] = "program features an unattractive user interface, which looks old and old-fashioned, you can create complete and fully customized calendars for multiple uses.";
fDesc[4] = ", registration offers over 500 extra games (2500 levels) and game editor. Sound effects, worldwide Hall of Champions.";
fDesc[5] = "character or symbol in the chart, and it will be inserted into your text. Supports 10 European languages.";
fDesc[6] = "Faroese Finnish French Frisian Gaelic Georgian German Greek (Ancient Modern Coptic) Gujarati Punjabi Hungarian";
fDesc[7] = "wrestling with unwieldy shortcuts to accents, or impossible to find umlauts and circumflexes! Upgrade your character map.";
fDesc[8] = "game or quiz. Create your own modules with included editor. Fast-paced, entertaining, educational.";
fDesc[9] = "phrases can be inserted into ANY Windows program from each language display. FREE TO SCHOOLS AND LIBRARIES";
fDesc[10] = "(restaurants), bars, cafeterias, home delivery, carry out, fast food and country clubs.";
fDesc[12] = "formats.";
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 = '...';
}
}