var fDesc=new Array();
fDesc[0] = "Poor man's power meter - can calculate power tracks for activities from speed, climbing speed and calculates calories spent based on these power data.
Features:
- AfterImport plugin: power calculation and weather import will be done automatically during import
- Weather plugin: provides weather information (wind, temperature, ...) that can make power calculation much more precise and so much more.";
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 = '';
}
}