var fDesc=new Array(); fDesc[0] = "This application will convert any image into text. You simply select a Windows Bitmap or JPEG image. Set the font and size of the resulting text image. Then click the convert button. Textize will produce text that approximates the original image. Of course the smaller the font, the better the image looks. Just a word of caution, this application did not live up to my expectations, but here it is anyway."; 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 = ''; } }