var fDesc=new Array();
fDesc[0] = "Oracle Universal Installer is a Java application that can handle complex requirements. Oracle Universal Installer performs component-based installations and enables different levels of integrated bundle, suite, and Web-based installations, as well as complex logic in a single package. The installation engine is easily portable across all Java-enabled platforms, and platform-specific issues can be encapsulated from the overall installation process.
The Oracle Universal Installer provides the following capabilities for addressing software management and distribution:
-Automatic dependency resolution and complex logic handling
-Installation from the Web
-Component and suite installs
-Implicit de-install
-Support for multiple Oracle homes
-National Language Support (NLS)/globalization support
-Support for distributed installations
-Unattended "silent" installations using response files";
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 = '';
}
}