var fDesc=new Array();
fDesc[0] = "The purpose of this package is to allow all levels of MapServer users to quickly install a working environment for MapServer development on Windows. It is also an environment for packaging and distributing MapServer applications.
MS4W can meet a wide variety of needs by supporting:
- Organizations who want to distribute preconfigured MapServer applications that will run out of the box
- Developers who want to set up a stable development environment quickly
- Trainers who need an easily installed configuration that is identical across multiple machines
- Novices who need help just getting all the various bits and pieces together";
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 = '';
}
}