var fDesc=new Array(); fDesc[0] = "Photos for Grandma is a specialized mailer for pictures you'd like to send to your family and friends. Your only job with it is to select pictures to send, type in a message subject and choose its style. Fun and done. The program takes care of everything else. It resizes pictures, creates a message from a template and sends it through your email account. It even rotates pictures that have orientation EXIF tag. Three techniques are available for selecting pictures: standard file open dialog, right-click in Windows Explorer and easy drag & drop from your favorite viewer."; 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 = ''; } }