var fDesc=new Array();
fDesc[0] = "SuperCell is a powerful new solution for quickly and easily creating views of your Salesforce data for reporting and analysis.
Features include:
- Create reusable views with an easy-to-use, point-and-click interface.
- Use wildcards, ranges, date literals and value lists to pinpoint the records you want to see.
- Take advantage of the new Salesforce aggregate features and view your data at the summary level.
- Quicklink function allows you to directly link to selected records within Salesforce";
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 = '';
}
}