var fDesc=new Array();
fDesc[0] = "Ciclosport Import Plugin adds an importer for Ciclosport bike computers (HAC4, HAC4Pro, HAC4000, HAC5, CM434,etc).
Features:
Adds two new imports to SportTracks:
1. import CicloSport ".dat" files and ".tur" files , the file formats used by the CicloSport HACtronic software
2. directly import from CicloSport bike computers connected to your PC - without having to use the HACtronic software";
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 = '';
}
}