var fDesc=new Array(); fDesc[0] = "The SAP NetWeaver Business Client (NWBC) is a rich desktop client that offers a unified environment for and a single point of entry to SAP applications. It provides a solution for hosting classical dynpros (SAP GUI UIs), Web Dynpro applications, BSP pages, portal pages, and other content. You can use the SAP NWBC either with or without the portal depending on whether you want to access ABAP back ends directly or not.
The SAP NWBC also supports generic desktop functions, like drag and drop, popup windows, and so on through the utilization of the corresponding APIs. The result is an efficient, modern and attractive client environment ideally suited to the power user."; 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 = ''; } }