var fDesc=new Array();
fDesc[0] = "Impresso Pro transform photos into paintings and combine paint effects with layers & brushes for print-worthy artworks. It comes with features such as Layers, Brushes, Soft Paint, Background Paint, Aged Paint, Painted Edges and three Impressionism Paint Effects: Alla Prima, En Plein Air and Tache paint styles.
Impresso Pro is a plugin that works with Adobe Photoshop CS3 , CC, CC 2014 or CC 2015, Photoshop Elements 10-13 or Lightroom 4 .";
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 = '';
}
}