var fDesc=new Array();
fDesc[1] = "like customs buttons with gadget support, new tab page to access a new page, quick search box to navigate your web search faster, synchronized toolbar setting to access your information from any computer, and improved auto fill that allows you to have several profiles information.";
fDesc[2] = "intuitive and very simple graphical user interface with multi-tab support, thumbnails of visited websites, enhanced autocomplete feature, password manager, and many other features. You can import all your settings from your old web browser such as Internet Explorer and Firefox.";
fDesc[3] = "photos with friends and family is as easy as pressing a button!";
fDesc[4] = "Google Talk that really kind of slowed the progress of the messenger down. Now, thanks to it, you can video chat and voice chat with all your contacts. They still have to download the plugin.";
fDesc[5] = "RuneScape players because it gathers and brings together all RuneScape related resources. This is incredibly convenient for RuneScape players since they’ll see significantly simplified their gaming activities.";
fDesc[6] = "personal information with a password. The program has a very user-friendly interface that enables you to locate its useful tools without having to launch them separately.";
fDesc[7] = "headphones). MXPLAY supports all popular local and streaming file types (MP3, AAC, OGG, WMA, FLAC, ALAC). The player has an integrated web browser to discover and play free music from anywhere and also allows users to mash-up their music with videos from the web (YouTube, Google, myspace). MXPLAY has a growing library of plug-in extensions including: last.fm, MP3tunes and Nintendo WiiMote.";
fDesc[8] = "popular web sites like Break.com, MetaCafe.com, YouTube.com, etc. All you have to do is to type or copy the web address of the video, and the program will let you to download the video directly to your PC or watch in your default browser.";
fDesc[9] = "screen. The application is in an early production stage, but it shows that it has a lot of potential. The looks of this application are certainly a match for commercial-grade application.";
fDesc[10] = "pictures and videos so that you can browse through them and watch/see them in 3D. There is a list of supported sites that you can use with Cooliris, so don't get your hopes up.";
fDesc[11] = "allows you to perform search with different search engines,find stuff on eBay,amazon or even launch a system utility like calculator and with all these features it has a collapsible structure that reduces it to a small button when not required .";
fDesc[12] = "developer's website. We can use it for a 30-day period or after downloading 50 images. It searches the Web for all the images in .gif and .jpeg formats and downloads them to our hard disc, so we can see them later. It uses the popular Google browser.";
fDesc[13] = "draw, hop back to Yahoo!, and repeat on the next link. Browster, a free plugin for IE, lets you zip you through result lists and avoid the pogo stick ride. Just search normally, open the Browster window by mousing over an icon next to a link, and you can view every result link instantly by simply pressing Page Down, without ever leaving your search page. Browster works with your favorite search engines like Google and Yahoo!, shopping sites like eBay and Amazon...in fact, almost any list of links on the web. Unlike a conventional browser window, Browster is carefully tuned for giving you a quick peek at a web page, deciding if you want to stay, and if not quickly moving on. You can open and close it with simple mouse motions. No groping for the back button or the close box. So it saves you mouse mileage as well as time. And unlike thumbnail previews, Browster shows you pages full size...";
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 = '...';
}
}