var fDesc=new Array();
fDesc[0] = "Dynavix Mananger is designed for devices with the software Dynavix 8 or higher.
Main Features:
- update of navigation software Dynavix for all devices
- information about available updates of map data
- map´s upgrade in terms of 3R programme
- editing of your own points of interests (POI)
- simplified access to exported data from the Ride Evidence
- fast access to the Vehicle Log Book";
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 = '';
}
}