var fDesc=new Array();
fDesc[0] = "mtPaint is a program that will help you easily create pixel art and manipulate digital photos. You may edit indexed palette or RGB images. You can use the following extension images: BMP, GIF, JPEG, LSS, PNG, TGA, TIFF, XPM, XBM files. You can create animations by moving layers, or shifting palettes.
Features:
-- Toggle the toolbars on or off at the touch of a button.
- Horizontal or vertical split view mode.
- Pixel grid for guidance at high levels of zoom.
- Move the mouse pointer with exact precision using the arrow keys.
- Extensive shortcut keys used to improve productivity.
- 12 Image clipboard.
- Up to 1000 undo steps.
- Zoom levels between 10% and 2000%.
- Pan window for quickly navigating a large image, or at a high zoom.
- Browse different files passed at the command line.";
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 = '';
}
}