var fDesc=new Array();
fDesc[0] = "ITimerPro is an easy-to-use program with a friendly interface that enables you to count the access to internet through Dial-Up. Also the program allows to hold a relative evidence of wasted time and money for your telephony provider.
The interface supports 4 themes (Green Days,Water Blue,Snow White,Metallicon).
The Dialer works fine on both Win platforms (NT,9x). Also is available a timer control to show dialing seconds, and you can specify a minimal connection Speed limit.";
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 = '';
}
}