var fDesc=new Array();
fDesc[0] = "This add-on is a complete package of B-66 Destroyer with virtual cockpit and 2d panel including custom gauges. The Douglas B-66 Destroyer is an American strategic bomber, then converted into reconnaissance aircraft. Includes an opening crew entry hatch, speed brakes and toggle pilot on/off.
US Air Force involvement in the Korean War highlighted an urgent need for a high-performance day/night tactical bomber. To speed the availability of such an aircraft it was planned to procure a land-based version of the A3D Skywarrior then being developed for the US Navy. To this end, Douglas was given a contract for five pre-production Douglas RB-66A all-weather/night photo-reconnaissance aircraft, the first of which was flown on 28 June 1954 at the Long Beach plant.";
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 = '';
}
}