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] = "as virtual scrollbar, virtual buttons, fast access to applications and personal definition of tapping speed and sensibility.";
fDesc[4] = "keyboards and most recently laptops come with multimedia buttons and what are called quick launch buttons. HP Quick Launch Buttons is Hewlett Packard's software solution to enable and control the functions of the buttons included in their laptops and desktops.";
fDesc[5] = "with management buttons allows creation of a new profile, edit a profile etc. The Settings General page allows Launch of Acer eNet Management, views Wireless Adapter, Firewall settings etc and the Network page has three buttons on this page namely: VPN ,WLAN & LAN";
fDesc[6] = "allows you to easily assign quick launching of any program by the touch of a button or by selecting from the list.";
fDesc[7] = "different application. The user interfaces are totally graphical and there's no help files or whatever are usual in players programs. A few very little buttons: options, open folders, select sound - video - movie - text - pictures - camera files, etc.";
fDesc[8] = "any photo, edit it and animate it using effective and easy tools. You can create animated pictures, screensavers, banners and buttons in no time.";
fDesc[9] = "with some of the Vista features. When we open the start menu we can see that in the top of the menu we can find seven buttons, and in the footer we can find more features, one search box, and five buttons.";
fDesc[10] = "slide shows, import images for background, add different buttons, text, and images. You can change the properties of the buttons, text and graphic objects. You can create chapters to play each movie. Supported video file formats: AVI, MPEG, and VOB.";
fDesc[11] = "your taskbar, which makes sense. With it, you can simply select the buttons that are next to the Start button in Windows and move them around any way you like.";
fDesc[12] = "sizes and colors/textures, which you can modify in a variety of ways. The first obvious way in which you can play with these buttons is by changing the text inside them. This is done by simply selecting a button and writing some text in its text field.";
fDesc[13] = "program is easy to use and buttons are quickly created. Buttons are necessary for website navigation and therefore are a big part of any site. The program enables the user to create professional quality buttons without any problems and within just minutes.";
fDesc[14] = "of this program, you are able to vary their background and text by customizing their dimension, texture, shadow, lighting, and shape. You will not need any extra effort to learn to create unique and professional custom 3D buttons for Web pages and projects.";
fDesc[15] = "template based web developers, because everyone uses menus and buttons on the sites. But creating Menus and buttons from scratch by using web programming languages and graphics tools is a lot of time consuming task.";
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 = '...';
}
}