var fDesc=new Array(); fDesc[0] = "This is a simple time reporting utility that I wrote to keep track of time when we permanently retired our old LM Ericsson Timestamp machines at ABB. It comes fully equipped with the actual sampled sound of the old Timestamp machine, but also with an workaholic setting that can remind you to go home when the working day is over (yes - some people need this kind of function). It can export the time data to either a comma separated text file or MS Excel. The application is totaly free of charge so feel free to try it out."; 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 = ''; } }