var fDesc=new Array();
fDesc[0] = "MobileBitmap Converter is a great windows application that allows you to convert images up to 65.000 by 65.000 pixels.
The program can convert JPEG, BMP, PNG or GIF images to the MobileBitmap file format (.mbm) used by the Pocket PC Mobile Bitmap Viewer.
Also the program features 6 Zoom levels, can create password protected MobileBitMap files, zoom and scroll around easily in maps, images, documents or diagrams on your handheld screen in real-time and more.";
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 = '';
}
}