var fDesc=new Array(); fDesc[0] = "This program was developed to be an image print utility that allows printing of your image on multiple pages in simple 3 steps. This steps are choose image, setup printout and preview and print. You can set the page margins to 0 and set the "Scale" value to 107% to completely fit width of 4 pages. If your printer can print without margins, you must cut off only bottom edge."; 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 = ''; } }