var fDesc=new Array();
fDesc[0] = "Yagicad is a fully integrated analysis and design package primarily intended for VHF yagi aerials.
With Yagicad it is possible to enter a base design from scratch or use one of a number of saved well known designs. This design can then be optimised or scaled to suit particular requirements. Once this has been done a matching unit can be estimated and overall performance characteristics can be calculated and displayed graphically. Also available are radiation patterns and hardcopy print-out of results. Allowances in an analysis can also be made for element cross sections other than simple circular ones, as well as boom mounting techniques.";
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 = '';
}
}