var fDesc=new Array();
fDesc[0] = "Everything you need to edit photos
PhotoScape X is an all-in-one photo editing software which provides photo-related features
such as Photo Viewer, Editor, Cut Out, Batch, Collage, Combine, Create GIF, Color Picker, Screen Capture, RAW images and More.
Color & Filters
Try a variety of effects, filters and adjustments to make your own distinct style.
Film Effect & Light Leak
Apply film effect to get your own analogue feelings.
Apply light leak effect to turn out a boring and featureless photo into an astonishing photo.";
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 = '';
}
}