var fDesc=new Array();
fDesc[0] = "NHER Plan Assessor is Government-authorised software for assessing the energy efficiency of new build homes 'off plan'.
Main features:
- Approved for SAP 2012/Building Regulations 2013, SAP 2009/Building Regulations 2010 and SAP2005/Building Regulation 2006.
- Covers all countries in the UK: England, Wales, Scotland and Northern Ireland.
- User friendly interface, including traffic light system and data validation routines to help avoid data entry errors.";
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 = '';
}
}