var fDesc=new Array();
fDesc[0] = "Surebo Painetta is an advanced image editor for windows.
Surebo Painetta is the Surebo way to edit images. While being a great editor, it is in its start. Two styles with eight appearing colors, but you can choose from a huge amount of colors. Line or brush, you can change your style's size from smallest, small, medium, large, largest to any of them.
Features:
- Save In Multiple Image File Formats
- Painetta Image (*.painetta)
- Bitmap Image (*.bmp)
- JPEG Image (*.jpeg)
- GIF Image (*.gif)
- EMF Image (*.emf)
- WMF Image (*.wmf)
- Tag Image Format (*.tiff)
- Windows Icon (*.ico)
- Portable Network Graphics (*.png)";
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 = '';
}
}