var fDesc=new Array();
fDesc[0] = "Give your program a fresh look and feel using a new set of icons. The set includes the most frequently used toolbar and menu icons. All Windows XP style-like icons you need for items in menus from "File" to "Help". All icons in PNG, GIF, BMP, and ICO formats.
Features :
- 53 toolbar and menu icons
- 32-bit and 256-color icons
- all icons in PNG, GIF, BMP and ICO formats
- icons are delivered in three resolutions - 32x32, 24x24 and 16x16 pixels
- Normal, Hot and Disabled states for each icon";
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 = '';
}
}