var fDesc=new Array();
fDesc[1] = "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[2] = "that case you need to use WinHTTrack, which will allow you to create a complete copy of the website in your hard drive. Although the simplicity and shortly striking appearance of the software is very useful.";
fDesc[3] = "developing web pages & applications. It contains Apache Web Server, MySQL Database Management System & PHP Programming Language. So now you can develop your applications locally on you home PC and once you have developed you applications you can upload it to your webhost.";
fDesc[4] = "It features slideshows, templates with three-dimensional effects, high transparency and even Vista-looks, along with useful tools for a highly sophisticated website design and management.";
fDesc[5] = "web site design software. Features include: drag and drop design, full website management, website asset management, built-in FTP and more.";
fDesc[6] = "Webshop with point and click ease. This powerful ecommerce solution is trusted by over 203,000 online shops around the world.";
fDesc[8] = "development languages. It offers an extensive set of features to make hand coding of web sites even easier than WYSIWYG editing!";
fDesc[9] = "site's traffic to life, casting your visitors as animated characters in a virtual city. Dozens of reports. Integrated Live Help. Click analysis + more.";
fDesc[10] = "and many others, SmartEdit will shave hours off of your website design time.";
fDesc[12] = "they indexed. Direct spiders to your most important pages, and exclude them from non-public pages. Easy to use";
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 = '...';
}
}