var fDesc=new Array(); fDesc[0] = "This program lets you create ISO images from a selected list of files and folders. It has a simple interface where you can add the required files and customize the ISO parameters. You can specify the Volume ID, System ID, Application ID, Publisher ID, and other metadata. After adding the required files, simply click the "Start Creating ISO" button to save the image file to your hard disk. You may burn this ISO image to CD/DVD later using any disk burning tool."; 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 = ''; } }