var fDesc=new Array();
fDesc[1] = "gaining features. The latest version is now able to download subtitles automatically. Still, there are many things BSPlayer has to do to become the dominant player of multimedia files.";
fDesc[2] = "skins. You can change the look of your Windows to Mac, Vista or your favorite game or a sport theme like cars, or cartoons and much more. WindowBlinds offers 8 themes that come along with the program.";
fDesc[3] = "1000s of artists. You will also be able to listen to music on your PC, mobile player or as ring tones on your mobile phone. With Radiotracker, you will have in your hands the gift of unlimited music all day, free and legal.";
fDesc[4] = "possibility to arrange you icons in the style the program offers, you can create your own layouts and save them. Also the icons' text or the icons themselves can be set to be hidden when we go off the desktop (or when the focus is on another window).";
fDesc[5] = "adjust the degree of opacity for each window using keyboard shortcuts or by doing a right click on the intended window. The program has also the ability to make the Windows TaskBar transparent.";
fDesc[6] = "look. You can set the transparency or opacity of the taskbar from 1% to 100%. If you want your taskbar to be darker then the opacity should be increased, and for lighter taskbar (transparent taskbar) the opacity should be lowered.";
fDesc[7] = "pronunciation in a foreign language. It offers you a complete system for learning words through a flashcard based system. The flash cards come with picture and sound. The deluxe version of the software adds pronunciation practice and mobile support.";
fDesc[8] = "utility. Edit your own professional icons easily and quickly with a built-in editor. It is also possible to extract an icon from an EXE or DLL file. Go ahead and import graphic files that are BMP, JPG or GIF and save it into an icon file or export the file to a graphic file.";
fDesc[9] = "icons is a snap by allowing you to use any graphical editor to produce icons. Because Easy Picture2Icon has the ability to convert digital pictures from BMP, GIF, JPEG, JPG and PNG into Windows icons.";
fDesc[10] = "utility you can change it into digital clock or analogic clock or can combine both the features to make it more interesting. This desktop utility, with just simple right click on the clock will display all the features.";
fDesc[11] = "you to move it to wherever you want. The program is very simple and shows a transparent clock on your desktop which gets even more transparent when you hover the mouse over it.";
fDesc[12] = "handling, images blending, translucent objects, etc. The application can manage up to 16 different types of files, such as JPEG, GIF and PNG, and even previous animated GIF files. An automatic image converter will make a GIF file out of any imported picture.";
fDesc[13] = "window on your desktop. Like new Windows Vista Aero Glass.";
fDesc[14] = "transparency level of any window, either manually via title button or automatically depending on a window state (active/inactive/moved /etc.).";
fDesc[15] = ", you simply drag the sliedr on a little rectangle to see your taskbar fading into your Desktop. When you find the opacity level you like, just close the program and get back to work!";
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 = '...';
}
}