var fDesc=new Array();
fDesc[0] = "The Sentinel Application Platform (SNAP) reunites all Sentinel Toolboxes. The basic function includes: opening a product, exploring the product components such as bands, masks and tie point grids. Navigation tools and pixel information functionality also represents some of the basic capabilities.
Sentinel Toolboxes contain image manipulation tools capable of handling giga-pixel images. They are suitable for working with satellite images of large sizes.";
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 = '';
}
}