var fDesc=new Array(); fDesc[0] = "Metalink Editor is a metalink editor written in Python, with a graphical user interface. It allows you to create and edit almost any kind of metalink, in a fast and simple way. One of its most powerful features, besides its nice user interface, is the ability to "scan" a file to create hashes and fill in the right file name and file size automatically. Adding mirrors is as easy as it can get and if you want to edit an already existing metalink, you can do that too."; 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 = ''; } }