var fDesc=new Array();
fDesc[0] = "FreshTel Internet Access is a tool that informs you on the session’s top speed rate, traffic and IP-address. The software is launched automatically and connects to the internet after the operating system has started.
Buttons “Portal” and “Go to Subscriber’s Portal” ensure a direct link to your personal page. If you click FreshTel logo you will be directed to the company’s web site
FreshTel Internet Access is available for users of the 32-bit and 64-bit versions of Microsoft Windows XP, Windows Vista and Windows 7 operating systems. .";
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 = '';
}
}