var fDesc=new Array(); fDesc[0] = "PhotoPDF is a batch-processing tool to convert photos into a PDF file. It provides three conversion modes: Batch Convert, Photos Merge and Thumbnail Page. The "Batch Convert" mode converts each photo into individual PDF files in batch. The "Photos Merge" mode merges multiple photos into a single PDF file. The "Thumbnail" mode generates thumbnail PDF pages from multiple photos. The customized settings allow you to alter the output; you can specify the paper size, output orientation and resolution."; 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 = ''; } }