var fDesc=new Array();
fDesc[0] = "ISIM messenger is everything you need to stay in touch with friends from Skype, Facebook, Google (Jabber) and ICQ. ISIM doesn't contains any advertisements or so much functions. Features:
- chatting with anyone from protocols above in nice chat window with colorfull nicks and smileys
- cotnact list with avatars, availability icons, unreaded messages indicator
- calling, conference, video calls (just a test at the moment) and sending files though Skype";
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 = '';
}
}