var fDesc=new Array();
fDesc[0] = "Loadcalc 2011 Panel Schedule prepares panel schedules, prints out circuit directories, and performs panel load calculations in accordance with the 2011 NEC.
Features:
* Load calculations and demand factoring according to occupancy type
* Service/feeder load calculations for single dwelling units
* Standard Calculation Method (NEC Article 220)
* Optional Calculation Method (NEC Article 220-30)
* Additional Loads in Existing Dwelling Units Calculation Method (NEC Article 220-31).
* Calculates net computed load in VA and amperes, and calculates the total service entrance load.
* Panelboard Directories: Prints directories for the inside of panelboard doors.";
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 = '';
}
}