var fDesc=new Array();
fDesc[0] = "The BlomDESKTOP™ viewer is a window desktop application that allows the user to work with geospatial data offline or via an online connection. The functionality within the BlomDESKTOP™ viewer offers advanced visualisation, navigation, measurement, interrogation and exportation capabilities while having the ability to connect with the BlomURBEX™ geoserver.
BlomDESKTOP™ is a powerful tool that provides a full integration between Blom’s products and the users own data sources, including aerial imagery, vector data and raster’s.";
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 = '';
}
}