var fDesc=new Array();
fDesc[0] = "The DeHavilland DHC-6 Twin Otter is a 20 passenger aircraft with STOL capabilities. As a utility aircraft, it has varioiusly served as a small airliner, cargo craft, bush plane and emergency vehicle. In service since 1965, more than 600 were produced until 1988.
Abacus Software's Premier Collection Twin Otter is a set of four models created by the design team of Barry Blaisdell and Bob May.";
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 = '';
}
}