var fDesc=new Array();
fDesc[0] = "Try it to see how easy and funny creating photomontages is with Clipping Pilot! Just install the program. You will see short demonstrations of how to cut any objects from a photo and then paste them into another picture.
Clipping Pilot allows you to :
Clip objects from a photo;
Apply to the background such effects as darkening, blurring, filling background with a color, modify background to monochrome;
Save clipped objects as standalone images;
Place clipped objects on other photos. An object can be pasted in various sizes and orientations.
To select an object, mark only a rough edge; the program will detect the edge accurately. The edgedetected by the program can be corrected manually if needed. See also How to clip objects and place them on other photos.";
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 = '';
}
}