var fDesc=new Array();
fDesc[0] = "The KDE edition of Linux Mint now uses the KDE Network Manager, as opposed to the Gnome Network Manager used in previous releases.
Main Features:
- KDE Network Manager
- New applications
- New Software Manager
o 30,000 packages
o Review applications straight from the Software Manager
o APT daemon
o Visual improvements
- New Backup Tool
o Incremental backups, compression, integrity checks
o Backup/Restoration of the software selection
- Better look & feel
o Backgrounds
o Welcome screen
o Update Manager
- System improvements
o Windows installer
o Husse quotes
o Apt hold/unhold/held commands
- Project changes
o Community Website
o Community Editions
- Upstream improvements
o Faster boot
o Long Term Support
Requirements:
- x86 processor
- 512 MB of system memory (RAM)
- 5 GB of disk space for installation
- Graphics card capable of 800×600 resolution
- DVD drive or USB port";
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 = '';
}
}