var fDesc=new Array(); fDesc[0] = "This is a simple font browser which displays a preview of all the fonts installed in your system, making it easy to choose a suitable one. It also allows you to test each font and have a global view of the full char map of each font. If you select more than a font you will be able to confront only selected fonts. Each blocked character in the char map shows, in the bottom right-hand corner of its block, the keyboard key to enter for that character. This is a big improvement on the Windows Character Map, which requires that you cut and paste the required character. Also, the char map is far easier to read in Font Glancer. I created this program a day that I need to choose a font for a banner and I needed to see what was the best font for the text of the banner. Comparing all the fonts made very easy to make a choice. If you have a lot of installed font this is the right software for you!"; 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 = ''; } }