var fDesc=new Array();
fDesc[0] = "Flixo Pro is a first class tool for building physicists, professionals and especially for designers. All important thermal characteristics of façades and window constructions can be calculated easily according to following standards: EN ISO 10077-2 and EN ISO 12631.
You can use it to determine the Ucw value of a facade element in accordance with the simplified assessment method according to standard EN ISO 12631.";
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 = '';
}
}