var fDesc=new Array();
fDesc[0] = "Multi Install is an advanced cd/dvd menu authoring system for your own creations. Menus can be excrypted.
FEATURES
# Build-in ZIP, RAR, and ACE support (unknown extensions will launch the associated program)
# Support for self-extracting exe files
# Language support for: English, French, Russian, Dutch, Polish, and Danish
# Install progress: Current file, all files, elapsed time, and estimated time left
# Automatic creation of short cuts in the Start Menu and on the desktop
# Uninstall (shortcuts and files)
# Association of a screen shot, html file, or any other file type
# Skinnable version you can apply your own skin to
# Editor with context sensitive help (press F1 in any field)
# NFO viewer
# Encryption
# Unpacking of password protected files
# Music player in Multi Install Skinnable. Formats supported: mp3, ogg, wav, mod, mo3, xm, s3m, mtm, it
# Program search
# Html formatting for text";
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 = '';
}
}