var fDesc=new Array();
fDesc[0] = "TYPO3Winstaller is a free WAMP (Windows Apache MySQL PHP Webserver) package including the free Open Source content management system TYPO3.
Features:
This package was created to provide you with an easy to install, out-of-the-box TYPO3 environment.
-Download and Play - no configuration and no other manually intervention is required
- simple user interface
- includes preconfigured Introduction package of TYPO3";
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 = '';
}
}