var fDesc=new Array();
fDesc[0] = "With Sap Business Objects you can access and analyze data with bi solution.
SAP BusinessObjects business intelligence (BI) solutions can empower your teams to achieve remarkable results by allowing anyone in your organization self-service access to relevant information. And by helping business users transform their decision making by providing fact-based, quality information regardless of where the data resides.";
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 = '';
}
}