var fDesc=new Array();
fDesc[0] = "Manage your FLY Fusion Pentop Computer, buy software on the fly, and upload your notes with the exclusive FLY World Application. Customize Your FLY Fusion Pentop Computer:
- Choose from a complete library of homework tools
- Load up your pen with your favorite tunes
- Manage your software easily by dragging and dropping onto your Pentop Computer.";
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 = '';
}
}