var fDesc=new Array();
fDesc[0] = "Download, View, and Print Maps with the MrSID Viewer.
To download and view maps offline you need a special viewer. Maps are stored in MrSID format. The MRSID Viewer is a freeware tool. This library provides access to the MrSID viewer developed by LizardTech.
NOTE:
LizardTech dropped the link for that stand-alone viewer download from their website some years ago, and now they only offer a browser plug-in that only allows viewing of MRSID images, and command-line utilities that convert the entire MRSID file into what could be an enormous TIFF image file.";
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 = '';
}
}