var fDesc=new Array();
fDesc[1] = "sites like Youtube, Dailymotion, Metacafe, Break, My space, veoh, CNET TV, Tudou, ESPN, Heavy, Photobucket, CNN, EA, Reuters, Live Video and Facebook.";
fDesc[2] = "with players from around the world. Each delivery returns us to the current NBA season, updating players, incorporating data, and so on.";
fDesc[3] = "channels include the ITV - UK, ESPN -US, RIO and porn. Ability to pause/resume live TV.";
fDesc[5] = "on Windows, Mac OS X and Linux computers. The application serves two basic purposes. The first one of them is to provide you with RSS feeds/news. Secondly, you can link it with your Facebook or Twitter account and you can get a number of alerts on your desktop.";
fDesc[7] = "your screen for simultaneous surfing. The app uses Internet Explorer as its base.";
fDesc[9] = ", Yahoo Sports, etc), professional league websites (NFL.com, NBA.com, MLB.com, NHL.com, etc) and professional team websites.";
fDesc[12] = ", photos and videos. Full-screen interface makes it easy-to-see and navigate with a remote control. One-click access to online content providers.";
fDesc[13] = "Sporting News, Sportsline, Yahoo Sports, etc), and baseball team websites.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}