var fDesc=new Array();
fDesc[0] = "CFONT PRO FEATURES:
-Supported Fonts-built in support for TrueType, OpenType, Bitmap, and Postscript Type 1 fonts
-Preview Fonts-Preview fonts from any folder, CD, disk, or network drive. See what the fonts are before you install them
-Font Engine-Extremely powerfull font engine provides a detailed view of your installed fonts with a complete property listing of each.
-Proof Sheets-See all the fonts on your system in one convenient view. Control the color, text and style of what is displayed.
-Complete Find Dialog-Our find dialog will not only search through installed fonts but will also search your computer for fonts. Supports file filter masks (i.e. Ari*.ttf or *.ttf)
-Preview Exporter-Export the proof sheet to a webpage (HTML) or Rich Text Format file (RTF) for offline viewing.
-Enhanced Property Viewer-The enhanced property view provides a newly styled interface to display all properties associated with a font.
-Advanced Character Map-Control the font size and even display a character at full screen mode.
-Character Magnifier-See exactly what any font character looks like. Zoom in and out and look at any part against a grid.
-Font Packager-Package any number of fonts into a single file for ease of transport to another computer.
-Quick Detailed View-Easily see all fonts, with font specific details, in a simple, quick list.
-Property Viewer-View the complete properties and sample font sizes of any font. Use to compare one font characteristics to another.
-Move / Copy Fonts-Move and copy installed fonts. Moving fonts will ensure the font is properly installed in the new location";
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 = '';
}
}