var fDesc=new Array();
fDesc[0] = "AirLife Playlist Importer is a convenient Windows application that helps you transfer your iTunes playlists or podcasts from your PC to your new Compaq AirLife 100.
Requirements:
-A PC with a Intel or AMD 1GHz or faster processor
-512MB or more of RAM
-Microsoft Windows XP SP3, Vista or Windows 7
-100MB of free disk space
-Apple iTunes 8 or above for the PC";
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 = '';
}
}