var fDesc=new Array();
fDesc[0] = "Loadcalc 2008 is a design tool that will quickly and
accurately prepare panel schedules, perform load
calculations, and print circuit directories.
Dwelling and commercial occupancies, single and three
phase.
2008 NEC Compliance.
Commercial Occupancies:
Standard Calculation Method
Demand factoring by occupancy type.
Demand factoring for all load types.
Neutral demand factoring.
Automatic transfer to panel directory.
Customizable report headers and footers.
Dwelling Units:
Standard Calculation Method:
Demand Factoring.
General lighting, small appliance and laundry loads.
Cooktops, ranges and wall ovens.
Fastened-in-place appliances
Largest motor load.
Optional Calculation Method:
Demand factoring of 'other loads'.
Automatic selection of the larger of heating and A/C loads.
Additional Loads in Existing Dwelling Units
Calculation Method:
Calculates the total load for existing dwelling units.";
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 = '';
}
}