var fDesc=new Array();
fDesc[0] = "es2f helps you to convert their e-Sword modules to SwordSearcher modules.
es2f is a tool to export an e-Sword module file to the input format used by Forge, which can then be compiled into a SwordSearcher module. It works for Dictionaries, Topics, Commentaries, and Bibles.
The purpose of this tool is to enable e-Sword users to export their own content or other public domain works available in e-Sword to Forge input text files. The files written by es2f can be compiled into SwordSearcher modules by Forge.
e-Sword files are nothing more than Microsoft Access database files. e-Sword was not used or installed during the development of es2f. es2f was developed solely based on user-created data files provided by e-Sword users wishing to have them converted for use in SwordSearcher. es2f is neither endorsed nor developed by the publisher of e-Sword.";
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 = '';
}
}