var fDesc=new Array();
fDesc[0] = "The MiDAS Player provides all the loading, saving and playback functions of MiDAS 4.0 - for free. Now you can load your MiDAS images, synchronized data files, tracked points, spreadsheet analyses, IRIG/GPS timing and position data, and notes.
Highlights:
-All the playback features of MiDAS are here, including variable-speed playback, zoom view, jump and circle-playback. MiDAS Player works with all file formats -- AVI, BMP, JPEG and TIFF. Load, shorten, change formats, re-save.
-Distribute the MiDAS Player to your clients, customers, co-workers, or include it on your CD-ROM with your images. The MiDAS Player is a great display and demonstration tool.";
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 = '';
}
}