var fDesc=new Array();
fDesc[0] = "Pastel lets you apply a filter on your images based on a set of about 70 filters.
Filter categories are frame out, frame in, colors, 3D, artistic and grid.
Pastel will show a preview your image with the different filters of the category, so you can quickly select the one you prefer.
Freemium with 30 free processed images per month then a watermark is applied to the images.";
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 = '';
}
}