var fDesc=new Array(); fDesc[0] = "FontSelector is a simple freeware font viewer for the 32-bit Windows Family (Windows 95, 98, NT4 and NT5). It gives you a quick and easy way to browse and print all your installed fonts.

I've tried to make this program as simple as possible. Therefore I decided to split the program into four tabs - If you just want to browse your fonts, use the first tab. If you want a little information about a selected font, click the second tab. If you want to change some of the settings, click the third-tab and finally, if you want to know something about, where you can get the newest release, click the fourth tab."; 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 = ''; } }