var fDesc=new Array();
fDesc[0] = "Axialis IconGenerator is a free icon production tool for professional developers, UI designers and illustrators. It lets you create vector & bitmap icons in seconds from a database of ready-to-use icon sets.
Main features:
- Vector formats: SVG, XAML, PDF, EPS, PS.
- Bitmap formats PNG, BMP, JPG, ICO, ICNS and Image Strips.
- Uses a database of professionally-made vector icons.
- Icons can be customized with overlays and colorized.";
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 = '';
}
}