var fDesc=new Array();
fDesc[0] = "KitLog Pro is an organizational tool that allows the builder of any type of aircraft to create, archive, maintain, and display the entire building process.
Whether your experimental aircraft is a plans-built EAA bi-plane, Van's RV, a Glastar, or even a Lancair IV-P, KitLog Pro is the most efficient way to ensure that you meet the requirements of a builder's log for the certification of your homebuilt aircraft.
KitLog Pro began simply as an electronic builder's log and has since evolved into a complete builder's resource tool that has completely revolutionized the experimental aircraft industry. Currently, there are over 3,000 experimental aircraft builders from around the world using KitLog Pro.";
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 = '';
}
}