var fDesc=new Array();
fDesc[0] = "Project Reader is a Viewer for Microsoft Project. Project Reader is a desktop application that lets you open, print and export Microsoft Project MPP/MPT files , Microsoft Project XML files or Microsoft Project Server without requiring MS Project. The available views are: Gantt Chart, Tracking Gantt, Task Usage, Resource Usage and Resource Sheet. Printing features: all views are printable, print preview, change printer settings, scaling, customizable footer and printing from the command line.
Other functions: tables (add/remove fields, save custom table); task, resource and assignment details; sort by column; resource or group filtering; smart find; custom filters; export to external files: XML and CSV file format; support for the linked projects; support for Microsoft Project tables; support for Google Drive and Dropbox; object model programming via Visual Basic for Application, open files via HTTP;Visual Report on Microsoft Excel and other useful functions.
Project Reader is a cost-effective solution for all your employees to instantly access all Microsoft Project plans, stored in your company computers.";
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 = '';
}
}