var fDesc=new Array();
fDesc[0] = "Do you want to: open an .xls or .xlsx file made in Microsoft Excel or a PlanMaker workbook, but don't have a suitable spreadsheet program installed?
Do you wish to view such a file on your screen, print it, even create a PDF file from it?
With PlanMaker you can open, view and prints these document types:
-.xlsx, .xlsm Microsoft Excel 2007 and 2010
-.xltx, .xltm Microsoft Excel 2007/2010 templates
-.xls Microsoft Excel 5.0 up to Excel 2010
-.xlt Microsoft Excel templates 5.0 up to 2010
-.pmd PlanMaker 2001 up to 2010
-.pmv PlanMaker templates 2001 up to 2010
-.pmw PlanMaker 1.0, 2.0, 97
-.sdc StarCalc 1.0, 2.0
-.slk SYLK files
-.rtf Rich Text Format
-.dbf dBASE files
-.txt, .csv, .prn Plain-text files (DOS, Windows, Unicode, UTF-8, many 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 = '';
}
}