var fDesc=new Array();
fDesc[0] = "Apply fun and nice effects to your photos easily. And when we say easily it means in just 1-2 clicks! The first click to select an effect, the second one to apply it!
Benefits and features:
- No special skills or knowledge required to edit your photos.
- Really easy to use.
- Professional results.
- You can apply multiple effects one by one.
- Automatic rotation of photos";
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 = '';
}
}