var fDesc=new Array();
fDesc[0] = "Create and modify icons, multi-resolution icons, cursors and animated icons for your Windows desktop, web site or other projects. Features: Complete painting tools; Transparent, Inverse paint; Extract from cursor, icon (including OS2, Linux, XP and other formats), animation, program and image files; Export to animation or image formats; Edit icons within programs (EXE, DLL, etc.); Effects filters; Animation tools; Icon or cursor albums; more...";
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 = '';
}
}