var fDesc=new Array();
fDesc[0] = "Remo Repair PSD software is an advanced repair tool to repair corrupt / damaged PSD, PDD files. Repairs PSD file with its color mode i.e. gray-scale, Bitmap, RGB color, indexed color, CMYK color, multichannel color, duotone etc.
Benefits:
- Repairs corrupt and damaged Photoshop PSD files
- Repairs and recovers layers and mask from PSD files
- Repairs files with depth of 1, 8, 16 and 32 bit per channel
- Works on Windows 8, Windows 7, Windows XP, Windows Server 2003 and 2008";
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 = '';
}
}