var fDesc=new Array();
fDesc[0] = "The most powerful tool to selectively control color and light in your photographs.
Viveza 2 brings a whole new time-saving dimension to your image editing. No complicated selections or layer masks to wear you down. Point, click, slide and voilá - your image looks great. Now featuring global adjustments, fine-detail structure control, and shadow recovery. Viveza 2 will forever change the way you edit images. For Adobe Photoshop, Adobe Photoshop Lightroom, and Apple Aperture.";
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 = '';
}
}