var fDesc=new Array(); fDesc[0] = "Torrent Opener is a simple torrent file viewer and downloader, it is a tiny BT client. A torrent file is a BT (BitTorrent) metainfo file, it contains metadata about files and folders to be distributed, these files can help BT clients to initiate file transfer using the BT protocol.

This app can quickly open a torrent file, and show all important metadata, includes: name, total length, mode, piece length, number of pieces, creation date, created by, info hash, comment, announce and files."; 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 = ''; } }