var fDesc=new Array();
fDesc[0] = "The Software Time.NET is a free evaluation software for ALGE devices. Currently supported devices are: Timy, TDC 8000/8001, S3, S4, and Comet. At the moment it is available in German, English, Norwegian, Russian and Italian.
Program Specific Features :
- Timy Backup : At the program “Timy Backup” there is a continuous number instead of the start number. You have the possibility to enter the start numbers explicit manually. You can mark this in the Timy with a “*”. This can be set up in Menu/Backup/STN *. In this case Excel Writer will use the start number. Otherwise there will be always the start number 0.
- Other Hints : The command „request times“ works only with the Devices TDC 8000/8001 and Timy. On the other devices the transmitting of the times must be started manually. You can do this by sending or printing times. For e.g. TDC 4000: print out of a classement.";
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 = '';
}
}