var fDesc=new Array();
fDesc[0] = "Ulead Photo Express 4.0 - My Scrapbook Edition comes with stitching software called COOL 360. It allows you to stitch a series of photos and make 360-degree panorama using a series of photos. You can also use the program to stitch your scanned 12"x12" pages together and post the results to a web page or share them with your family via email.";
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 = '';
}
}