var fDesc=new Array();
fDesc[0] = "AirList is an easy to use Playlist Generator and Music Scheduling system. Easy to use and understand interface, create a 24 hour Playlist in just seconds, automatic Artist and Song Repeat Supression, build in clocks or rotations.
Schedule spots and liners in your playlists, create playlists up to 90 days at a time. Song and artist repeat protection, Define hourly rotations of music categories and spots (liners, jingles etc).";
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 = '';
}
}