var fDesc=new Array(); fDesc[0] = "This program offers the possibility to export characters of a font as single images (supported image formats: Windows bitmap, JPEG, GIF). Precondition for this is, that the desired font is already installed on the computer where the program is running.

The characters are displayed as a list and images that shall be exported may be customized by font size and font color (foreground, background). It is also possible to just save single images only or copy the into clipboard for the further usage within other programs."; 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 = ''; } }