var fDesc=new Array();
fDesc[1] = "together with the portability of SlingMedia products. After an agreement between HP and SlingMedia, they released QuickPlay SlingPlayer, whose main feature is that it allows you to watch TV from your computer or portable devices such as laptops or cellphones.";
fDesc[2] = "television player. This is the smartest way to enjoy favorite videos, TV shows, Movies, Music, without shredding a single penny from your pocket. This tool allows the user to manage, browse, download, play and watch videos by expanding its viewing area";
fDesc[3] = "Engineering Team developed a killer application called the SlingPlayerâ„¢ that takes full advantage of the cutting-edge engineering inside the Slingbox. Our software works hand-in-hand with the hardware inside your Slingbox to make taking your television along with you easy. Better yet, the SlingPlayer encompasses several innovative features to bring your entire living room experience to your laptop, desktop, PDA, or smartphone (minus the couch potato). Finally you can watch and control your television wherever you are!";
fDesc[4] = "is no need for a TV Tuner card because all the channels are streamed through your Internet connection.";
fDesc[5] = "directly from satellite. The program is completely free, but to use it you need a DVB-PCI card with hardware decoders on the board and a SAT-dish. The application features a very simple and intuitive user interface that requires no knowledge at all.";
fDesc[6] = "following countries: United Kingdom, France, Belgium, Denmark, Norway, Germany, Spain, Switzerland. Depending on where you are located you can see up to 30 TV Channels in differents languages";
fDesc[7] = "NBC, YouTube, MySpace, Google, Yahoo, to name but a few. . This powerful yet easy to use software offers a simpler and more comfortable way of watching thousands of videos without the need of using a browser and watching them in small windows within web pages.";
fDesc[8] = "utilize the computer as a professional video recorder for the television set. The program encodes and compresses the real-time video data from the various video devices connected to the computer such as TV, VCD, analog camcorder and the likes.";
fDesc[9] = "exciting colorful graphics that keeps players wanting more. It is a great tool for people who want to practice their English vocabulary. It is based on the American TV show with the same name. The player can choose the characters appearance, including hair color and style.";
fDesc[10] = "select your question before time is up. Answer different questions correctly and rise the level of a ladder meter in your screen, think fast and if you don't know the answer you better remove it, each bad question will make the ladder fall.";
fDesc[11] = "broacasts from around the world. No TV card required, you can visit live content with no subscription required!";
fDesc[12] = "hardware or monthly subscribtion. Only the best quality channels are included in the database. TVzation covers the most programs broadcasting on cable and satellite TV.";
fDesc[13] = "hundreds of TV channels, listen to radio stations from around the world, enjoy CD collections with complete artist/album description.";
fDesc[14] = "stations. This program is easy to use, and it has a very simple simple interface and multilanguage support. You simply select the country in which you're interested in the left pane, and the television channel or radio station you want to hear.";
fDesc[15] = "of free TV channels from different countries of all over the world in different languages is the broadband connection.";
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 = '...';
}
}