var fDesc=new Array();
fDesc[0] = "PF Image-2-HTML is a program that converts normal or animated images into HTML colored characters.
Features:
- Supports many file formats such as BMP, JPG, PNG, TIF, and animated GIF
- Creates HTML files efficiently from images and animations using colored characters and Javascript
- Many settings such as text size, symbol, line height, and frame delay, make it easy to get the wanted results
- Simple and powerful interface
- Ability to upload HTML files to our server - just press a button and it's online in less than 5 seconds.";
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 = '';
}
}