var fDesc=new Array(); fDesc[0] = "VMmanager includes two main functions:

- Create a new virtual machine
- Modify an existing virtual machine

Some features:

- License: GNU GPL
- Running on Windows and Wine
- Easy to install
- English, French, Italian or German GUI
- Create new virtual machines
- Modify existing virtual machines
- Specify the operating system and the project settings
- Set the RAM size
- Select the disk adapter (IDE, SCSI)
- Create a hard disk (flat, sparse, 2 GB split types)
- Enlarge the hard disk afterwards
- Use floppy disks and CD drives as well as image files
- Generate formatted floppy images
- Manage network adapters
- Change MAC addresses
- Add peripheral adapters (USB, COM, LPT, sound)
- Show VMX files and VMDK headers
- Determine the range of functions by an ini file"; 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 = ''; } }