var fDesc=new Array(); fDesc[0] = "UNetbootin is an open source program that allows you to create bootable Live USB drives for Ubuntu, Fedora, and Linux distributions. The program loads distributions either by downloading ISO (CD image) files for you, or by using an ISO file you've already downloaded. It also can be used to load various system utilities."; 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 = ''; } }