var fDesc=new Array();
fDesc[0] = "Based on the Xiso Xfer source code, XBOX ISO Transfer has several main features :
- True "on the fly" extraction, files will be transferred straight to your XBOX without being saved to disk first (if you have enough ram). It's the fastest tool currently available.
- Supports rar files, just open them as you would an iso.
- Chooses a destination directory name automatically, based on examination of xbe files inside the iso.
- Batch mode, just select or drag&drop multiple files and sit back.
- No bloaty skins";
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 = '';
}
}