var fDesc=new Array();
fDesc[0] = "The software masterpiece for Bills of Quantities.The best designed interface to make your estimating activities faster and more efficient.
PriMus allows integrated development and processing of all estimating or project management documents, updated with the latest regulatory guidelines, with the automatic generation of:
- bill of quantities (forecasts, resulting costs, work variation surveys, final accounting, quantity estimates, requests for proposal, labour incidence estimate, etc);
- measurement book;
- accounting register;
- cost summary;
- work progress statement;
- payment certificate;
- steel reinforcement bars requirements book;
- price lists;
- comparison table (for work variation surveys, comparison of work progress statements, comparison of multiple design assumptions or proposals, etc.);
- weekly lists of workers, equipment, and costs;
- forms (completion of works, beginning of works, suspensions, resumptions, execution, etc.);
- history management.";
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 = '';
}
}