var fDesc=new Array();
fDesc[0] = "This application basically provides a GUI for working with hard disk drives that have been formatted to the WBFS file system.
Main Features:
-Listing of games with titles, sizes and codes.
-Drag-and-drop support for adding multiple files at once to the WBFS drive.
-Easy to use interface which also reports available, total and used disk space at a glance.
-Batch processing of multiple ISOs.
-Rename discs on the WBFS drive.
-Multilingual support";
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 = '';
}
}