var fDesc=new Array();
fDesc[1] = "enables organizations to reliably manage mission-critical information and confidently run today’s increasingly complex business applications. SQL Server 2005 allows companies to gain greater insight from their business information and achieve faster results for a competitive advantage.";
fDesc[2] = "notification. You can manage all of your conversations in a single message window. Besides, you can send your friends an SMS from your PC with ICQ. Your friends can SMS back from their mobile directly to your ICQ message window.";
fDesc[3] = "(enhanced by Google), so users can easily search the web right from the AOL toolbar without having to open another window. There's also an AOL and AIM email preview, so users can quickly check their Inbox and send messages to their contacts.";
fDesc[4] = "gain points. You will have to make a word from more than three or three letters. You can make a word by selecting letters horizontally, vertically or diagonally even - but the rule is not to leave a letter (you cannot skip a letter).";
fDesc[5] = "invites the player to form words out of them. All the levels and supplied letters are good for creating known words. The game takes care of the truthfulness: there always are words that can be created using the displayed letters.";
fDesc[6] = "player, using video files or an already authored DVD, saved on your PC. Video DVD maker will allow you to import video from video files in different formats, including AVI, DIVX, XVID, MP4, MPG, WMV and ASF.";
fDesc[7] = "storyline much attractive. You start being a nameless, faceless new racer who is trying to gain popularity in the city of Rockport. Graphically, the game looks great. Regarding sound, the game has amazing engine noises that change depending on which car you are in.";
fDesc[8] = "functionality. To begin, it does without the annoying issue of having to click inside the virtual machine to gain operation of it and to have to release the cursor by hitting alt + ctrl on your keyboard.";
fDesc[9] = "that will appear from the top of the screen. You can collect power-ups to gain access to more sofisticated ammo, more power, extra lives and score points.";
fDesc[10] = ", including small fish and large sharks. Your objective is to catch as much fish as time allows you. Join your counterparts!";
fDesc[11] = "paradise. Her uncle is getting old and tired and is thinking about retiring, but he wouldn’t like to sell his island to some unknown reach. So he had thought about letting the island in charge of Anna, but he wants her to show her capabilities of selling ice cream first.";
fDesc[12] = "part, independent for each channel. It has independent delay time, feedback gain and delay gain for each channel. The \"Ganging\" option helps to adjust both channels simultaneously and easily.";
fDesc[13] = "creatures, including small fish and large sharks. Your objective is to catch as much fish as time allows you. Join your counterparts!";
fDesc[14] = "you the ability to control the volume of audio tracks. The program includes advanced MIDI controls and the response curve of these controllers can even be customized by the user.";
fDesc[15] = "styles and ranges. This ultra-high quality compressor is very beautifully designed and the new innovative interface definitely gives it a techno look.";
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 = '...';
}
}