var fDesc=new Array();
fDesc[0] = "ThreeDify Excel Grapher is the 3D add-in for Microsoft ® Excel ® 2000-2010. It makes creating 3D graphs from raw data as easy as highlighting a range of cells in a worksheet. With a few mouse clicks, users can easily create a wide range of X-Y-Z scatter graphs, line graphs, 3D voxel and bar charts, surfaces (TIN and gridded meshes), or water-tight solids. In addition, ThreeDify Grapher makes multi-variant 4D data visualization possible directly within Excel.
The selection ranges for each axis don't even have to be the same size - Excel Grapher will interpolate or assign values for empty cells, depending on the options you select.";
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 = '';
}
}