var fDesc=new Array();
fDesc[0] = "Sundance uses astronomical equations to determine solar data for any time and location. The solar heat gain coefficient/radiant time series method is used to calculate solar cooling loads through windows, allowing analysis of the effects of shading by overhangs, external louvres and adjacent buildings.
All irradiance calculations are performed in accordance with UK and US calculation methods. Locations and glazing databases may be edited and added to.
Sundance operates in metric SI and imperial IP 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 = '';
}
}