var fDesc=new Array();
fDesc[0] = "BI-Lite CUBE-it Zero is an OLAP Cube builder available in a number of editions, which brings building cubes within the grasp of anyone familiar with MS Access or SQL Server.
CUBE-it Zero bridges the gap between Access Queries and OLAP CUBES. CUBE-it Zero extends the reach of OLAP cubes to everyone by enabling the creation of cubes using a simple 4 step process.
Whilst not a replacement for a data warehouse, CUBE-it Zero, delivers fully functional OLAP cubes which need not be SQL Server based, that do not require the foundation of a data warehouse.";
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 = '';
}
}