var fDesc=new Array();
fDesc[0] = "eSword 9 Converter is a powerful tool for converting e-Sword 8.0.6 specification adherent modules to e-Sword 9.x modules.
Main Features:
- Converts all of the allowed types of e-Sword 8.0.6 specification adherent modules.
- Bilingual in English and Spanish with language auto detection.
- Low system overhead resulting in fast, simple and clean module conversion.
- No detailed e-Sword module preparation required for use.
- Normal Mode Module Conversion: In 7 easy steps you can convert that 8.x module you just can’t live without.";
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 = '';
}
}