var fDesc=new Array();
fDesc[0] = "ILWIS for Windows is a Windows-based, integrated GIS and Remote Sensing application consisting of:
Display of raster and multiple vector maps in map windows
Display of tables in table windows
Interactive retrieval of attribute information
Image processing facilities
Manipulation of maps in a Map Calculator
Manipulation of tables in a Table Calculator
GIS analysis tools
Script language to perform 'batch' jobs
ILWIS functionality for vectors includes: digitizing with mouse and/or digitizer, interpolation from isolines or points, calculation of segment or point density, pattern analysis.
ILWIS functionality for raster includes: distance calculation, creation of a Digital Elevation Model (DEM), calculation of slope/aspect, deriving attribute maps, classifying maps, manipulating maps with iff-statements, with Boolean logic, crossing maps, etc.
For satellite imagery: creation of histograms, color composites, sampling and classification, filtering, multi-band statistics.
Furthermore ILWIS provides import and export routines, editing of point, segment, polygon and raster maps, change of projection/coordinate systems of maps, and output possibilities with annotation.
With Windows, you can start one operation and keep it running while you start one or more additional applications. This is a sort of multitasking. You may work with both Windows and DOS application programs, you can perform one or more ILWIS calculations in the background and at the same time display maps, run other ILWIS operations, print, etc.
ILWIS 3 for Windows is designed for Windows '95, Windows '98, Windows NT4 and Windows 2000.";
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 = '';
}
}