var fDesc=new Array();
fDesc[0] = "FixWin is a 529 KB freeware portable application to repair & fix common Windows annoyances & issues. FixWin detects whether you have Windows 7 or Windows Vista installed and accordingly offers you the relevant fixes only.
While there were several tutorials and how-to’s already available on the Internet to deal with such annoyances, FixWin as a single utility was conceptualized, to fix some of the common annoyances which may be faced by a Windows user.";
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 = '';
}
}