var fDesc=new Array();
fDesc[0] = "Start quickly with digital photo manipulation. Element Paint Studio is a free photo editing program which allows you to perform enhancements with photos and images quickly and easily.
Main features include:
- Tools- Select Area, Crop, Zoom, Airbrush, Paintbrush, Gradient rectangle shape tool, Rectangle tool, Ellipse Tool, Text Tool, Brightness Tool, Eyedropper tool, blur
- Dynamic Color selection and mixing tools
- Swatches
- RGB Color tuning
- Easy changing of Image attributes
- Image rotation / flipping
- Image inversion
- Image grayscale
- Image filters";
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 = '';
}
}