var fDesc=new Array(); fDesc[0] = "CBFG supports the following features: -DIB rendering of font gives best font output, regardless of users screen settings. -Global or per character position and width adjustment. -Texture Sizes from 16x16 up to 4096x4096.
-Zoom up to 400% for accurate tweaking of character positions. -Anti-aliasing for smoother looking fonts, Cleartype is available on machines running Windows XP or newer operating systems. -Control of font width. -Font preview option. -TGA export option. -BMP output option. -BFF output in 8, 24 and 32bit colour depths -C example source code for loading and rendering BFF files -Binary font data export. -Font info dump option. -User configurable colours and startup parameters."; 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 = ''; } }