var fDesc=new Array();
fDesc[1] = "of satellite photographs. There are three versions, the free one for personal users, Google Earth (Enterprise) and Google Earth Pro. Many interesting features: Flight simulator, Sky and Mars, Street Views and 3D Buildings and the fantastic Google Ocean.";
fDesc[2] = "contains ... (1) Access 2007 - database management.. (2) Word 2007 - Word processing. (3) Excel 2007 - spreadsheet. (4) PowerPoint 2007 - presentation software. (5) Outlook 2007 - Email and Personal Manager. (5) Publisher 2007";
fDesc[3] = "in PowerPoint 97 and later versions. It supports opening password-protected presentations. You can view and print presentations, but you cannot edit them in the PowerPoint Viewer 2007.";
fDesc[4] = "applications and standards-based Web sites Designing Web pages in conditions equivalent to a real browser, without losing direct access to the code, thanks to the new Vista feature live Dreamweaver CS4.";
fDesc[5] = "chains of three or more pieces. You can“t rotate black rings, or pieces that are not rings. Some pieces will have a letter on them.";
fDesc[6] = "as you please, to speed up DNS lookup, and at the same time to block unwanted websites. Network analyzing tools like 'Ping' and 'TraceRoute' helps in troubleshooting network related problems.";
fDesc[7] = "personal life. What's unique about the app, is that it allows you to store all of your contacts, tasks, notes, and to-do lists divided into tree-structured categories. In addition, each item (be it a note, task, contact ,etc) may belong to several categories (tags).";
fDesc[8] = "software is very easy to use, and the APO USB Autorun automatically detects and extracts the file from the USB drive as CDs are auto run using autorun.inf.";
fDesc[9] = "Enggist & Grandjean Software SA and Recipe Center) give the opportunity to share with us their fabulous software named Recipe Center. When you visit the main web site you can be linked directly to the Recipe Center, where you can obtain for free their software.";
fDesc[10] = "search engines are supported), we can see small icon on the right side of each link. A \"green\" tick means, good site. A \"yellow\" means linked to bad sites or have some threat level. A \"red\" \"X\" means, websites with virus or misleading contents.";
fDesc[11] = "2.0 files on Windows and Mac OS X. With Dolet software, you can finally read files created in Finale 2009 with Finale 2007. Read music from Sibelius into Finale by using Dolet for Finale together with our Dolet 3 for Sibelius plug-in. MusicXML files created with Dolet 4 for Finale usually import into Sibelius 4 and 5 better than Finale ETF files do. Even if you're using Finale 2009, Dolet 4 has three big advantages:It allows you to translate an entire folder of Finale or MusicXML files at one time - an enormous time savings when you have to move a lot of files from one program to another.It has more advanced features, including better export to Sibelius and an import option for MusicXML XSD validation.The Dolet for Finale plug-in is updated much more often than Finale. Finale releases typically have one or two maintenance updates. In our previous release, Dolet 3 for Finale had nine...";
fDesc[12] = "would be great for the Web servers. The output SWF movie can be linked to the specified URL.";
fDesc[13] = "analysis and produce a detailed report. Link popularity is actually a total count of all the linked pages that link to your site. Higher link popularity can help your website get higher search engine ranking.";
fDesc[14] = "soft and hard links supported by NTFS file system";
fDesc[15] = "the broken links, fixing broken links, work with files stored on web-sites and SharePoint servers.";
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 = '...';
}
}