var fDesc=new Array();
fDesc[0] = "Miranda IM is the smaller, faster, easier instant messenger with support for multiple protocols. Designed from the ground-up to be resource efficient while still providing a rich feature set, Miranda includes support for AIM, Facebook, Gadu-Gadu, Jabber, ICQ, IRC, MSN, Yahoo and more.
Features:
– Fixed time display when Disable Automatic daylight correction checkbox in Windows is cleared
– Fixed show time different from current time
– Fixed pressing button with space
– Fixed utf8 langpacks and ansi translations
– Fixed error notifications when protocols are offline
– MSN: Fixed connectivity issues";
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 = '';
}
}