var fDesc=new Array();
fDesc[0] = "Tables Explorer for SAP R/3 Import any data from any SAP table with Tables Explorer selecting fields and filtering (options) conditional rows.
Features:
- Access more than one hundred thousand tables from SAP R/3
- Import any data from any SAP table relating to any SAP module, including BW.
- Individual fields can be selected for download in any order with any combined length of characters.
- Any filter (options) can be used for select data.
- Real time preview results and layout before download.";
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 = '';
}
}