var fDesc=new Array();
fDesc[0] = "All new DunnsPro Designer is a software application you can download and use to easily create photobooks, digital albums, canvas wraps, calendars and an array of photogifts straight from your own desktop.
DunnsPro Designer comes with a variety of templates to help you through the design process and is fully integrated with our production systems. Easy file upload and online ordering, including credit account, credit card and PayPal payment methods.";
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 = '';
}
}