var fDesc=new Array();
fDesc[0] = "Easy2Convert PNG to BMP (png2bmp) can be used to convert Portable Network Graphics files (PNG) to Windows or OS/2 Bitmap files (BMP, RLE, DIB). This application can only convert a single file using its interface. But you can automate file conversion using a BAT file.
If you need to convert multiple files, you can purchase professional PNG to IMAGE converter.";
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 = '';
}
}