var fDesc=new Array();
fDesc[0] = "There's hardly another man-made machine that captivates us like a jet does. There's nothing comparable to their combination of strength, speed, and power.
Observe a F-4 Phantom II as it at top speed through the clouds. Watch three F-15 Eagle fighter jets flying in tight formation, or marvel at the power and elegance of the MiG-29 Fulcrum.
Take off with this fascinating fighter jet screen saver!
Order now!";
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 = '';
}
}