var fDesc=new Array();
fDesc[0] = "Excel File Viewer lets you open, view and save/export/convert the MS Excel files on any computer, even if you don't have the MS Excel installed.
Additionally your may open and view the Lotus 1-2-3 and QuattroPro spreadsheets.
This application don't use any external libraries (no MS Excel/Office, no BDE, no ODBC, no ADO etc) and you may run this tool on computer without any additional setup/install.
You may view the data contents from any sheet in xls-file and to trace the full internal (system) information about stored BIFF-records within xls-file.
All formats of xls/xlw, wq/wkq and wk/wr/123 files supported (including Far-East and Middle-East versions).
You may also extract the full sources for stored VBA scripts, view internal ole-structure, see the VBA project attributes, save the extracted pictures (and charts) and more";
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 = '';
}
}