var fDesc=new Array();
fDesc[0] = "Perform basic font viewing and management functions with the freeware dp4 Font Viewer for Windows.
Main features:
- displays all fonts in any folder in OpenType ® (OTF), TrueType (TTF) or Collections (TTC) format
- has its own render engine with 256 subpixel anti-alias
- filters for font type / class / width / weight
- choose between ASCII or glyph display, it is possible to enter your own text
- shows unicodes and keys
- simple management functions - install, delete, display font information
- multi language executable - germnan and english
- list sub folders
- print function for single font and for complete font list
- no installation required, very small program";
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 = '';
}
}