var fDesc=new Array();
fDesc[0] = "It's an integrated Serverpack, combining the
latest release of XAMPPLite. This release of the serverpack uses the new build script for the windows environment created by Florian 'xsign.dll' Wolf . The release brings two major changes.
Firstly, the Serverpack is not provided as a zip archive anymore. It is now a precompiled executable file.
Secondly, the installation procedure changed from a two-step installation to a one-step installation. Maybe you know, that old serverpacks used a two-step installation procedure of webserver and clansuite. Now, the installation of Clansuite is performed when installing the Serverpack. Speaking in more common terms:
this pack runs right "out-of-the-box".
Just run "setup". It's one step - No more, no less.";
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 = '';
}
}