var fDesc=new Array(); fDesc[0] = "The Microsoft Component Installer for Windows SDK provides a mechanism for developers to package common redistributable runtime components for installation on an end user's computer. Developers building applications for Windows often need to ensure that runtime components are installed on the destination operating system in order to run correctly. With this SDK, developers can streamline the installation process and include this installer with their own installation package to ensure the pre-requisite components are in place."; 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 = ''; } }