var fDesc=new Array();
fDesc[1] = "channels include the ITV - UK, ESPN -US, RIO and porn. Ability to pause/resume live TV.";
fDesc[2] = ", mpeg, wmv, rm, iPod, mp4, 3gp, flash swf, YouTube flv, mp3, wma, wav, AC3, gif animation.";
fDesc[4] = "VOB, MOV, RM, RMVB, SWF, FLV, iPod, Zune, Apple TV, iPhone, Mp4, 3GP, PMP, PSP, Xbox, mp3, ac3, wav, wma, mp2 and Image formats.";
fDesc[5] = ", RMVB, SWF, FLV ,iPod, Zune, Apple TV, iPhone, Mp4, 3GP, PMP, PSP, Xbox, mp3, ac3, wav, wma, mp2 and Image formats.";
fDesc[8] = ", Zune, Apple TV, iPhone, Mp4, 3GP, PMP, PSP, Xbox, mp3, ac3, wav, wma, mp2 and Image formats.";
fDesc[10] = "them to use. It's fast and easy for you to set up and maintain. And the price is right... FREE!";
fDesc[14] = ", WMV, ASF, RM, RMVB, VCD, DVD to Apple iTV.";
fDesc[15] = ", iPhone, iTv, PPC, PMP, xBox and mobile 3GP";
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 = '...';
}
}