var fDesc=new Array();
fDesc[0] = "POMELO for PC is an all-in-one photo editor that provides you with beautifully simple, yet incredibly powerful tools to create gorgeous-looking photos in seconds.
State-of-the art filters, instantly take your photo to a pro-level:
Over 60 stunning filters, perfectly categorized in 7 groups, allow you to instantly create professional-looking photos.
Auto beauty retouch:
Instantly apply beauty filters or enhance your appearance with powerful retouch options: smooth skin, brighten eyes, face-lift, slimming and so much more!
Fast and Powerful Editing Tools:
All the tools you need for enhancing your photos – Auto enhance, crop, rotate, text, frames, etc. Quickly and easily adjust your photos to create just the look you’re after.";
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 = '';
}
}