var fDesc=new Array();
fDesc[0] = "TexBmp is a very small Windows programme to view FS texture files and convert them to bitmap and vice-versa.
Main features:
-view *.r8 *.pat *.bmp files by double clicking a valid file in Windows Explorer.
-view *.r8 *.txr ... texture files based on non-standard FS palette, such as the Las Vegas and the Meigs textures.
-view FS color palettes.
-convert *.r8 files to *.bmp files and *.bmp to *.r8 files
-let TexBmp calculate the best palette fit when you convert a bitmap with a non standard palette.
-set several options in *.bmp to *.r8 conversion
-browse the contents of a directory containing texture files";
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 = '';
}
}