var fDesc=new Array();
fDesc[0] = "Oriantica is the new generation orienteering simulation software. Using a map and a compass you have to find your way through the terrain to locate the controls as fast as possible.
In Oriantica it is possible to compete with other players over a network, or play against the computer.
The map and terrain is much more flexible than in previous versions, with more terrain objects and the possibility to import real maps.";
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 = '';
}
}