var fDesc=new Array();
fDesc[0] = "This utility will merge maps that you select and create a new map in the projection and scale of your choice. The created map is a mosaic of the maps used. Most datums, projections and image formats supported by OziExplorer are also supported by this software.
Features:
- create a new map from a collection of maps by merging them together into a mosaic.
- select the projection and scale (meters per pixel) of the destination map
- select maps to use to create the map
- select a region to use to create the map";
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 = '';
}
}