var fDesc=new Array(); fDesc[0] = "Omnitux is a program that provides various educational activities around multimedia elements (images, sounds, texts).
Omnitux provides several types of activities like associations, items to place on a map or a schema, counting activities, puzzles, card faces to remember, and some other.
Omnitux activities are described in XML files. Thus, you can modify or create your own activities without having to change the program.
The application supports high resolution bitmap images (JPG, PNG) and scalable vector images (SVG).
Moreover, it is a multilanguage program available for Windows and Linux platforms."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }