var fDesc=new Array();
fDesc[0] = "IMM Toolbar is a powerfull tool that provides you access to Internet.
You can get information from the web,the most important news and receive notifications to your desktop.
It offers you access to browsers like Yahoo,Facebook,Youtube,Twitter.
With this tool you can also listen the radio and watch videos.";
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 = '';
}
}