var fDesc=new Array();
fDesc[0] = "Texture Effect Picker with Live Preview - It's now faster and easier to find and preview the perfect texture in real-time on your images without wading through every texture effect. You can also filter the effects by style and set name.
Apply Wash Effect on Mask Layer - Now you can apply our popular Wash effect in the image mask layer allowing you to fine-tune the Wash effect while leaving the original image untouched*.";
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 = '';
}
}