var fDesc=new Array();
fDesc[0] = "It is for a single-user use. It is an example of application developed with the GeoConcept Development Kit and the Professional GeoConcept eXplorer.
You can visualize your data through an easy-to-use interface. Handlings (visualization, tabs, zoom in/out, views, queries...) are done via the menus of the application.
GeoConcept Multiviewer is an independent application that does not require the GeoConcept GIS.";
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 = '';
}
}