var fDesc=new Array();
fDesc[1] = "updates and thanks to it we can say it’s the next step in the Access evolution. The user’s disposal – wide library of professionally created templates of applications, makes table-, forms-, enquires- and reports- building easy.";
fDesc[2] = "organize, browse, locate, and view creative assets. Bridge provides centralized access to project files, applications, and settings, as well as XMP metadata tagging and searching capabilities.";
fDesc[3] = "vector and raster images, so you can quickly mock up designs, or leverage assets created in other Adobe's applications. This version features a number of new Auto Shapes that you can drag onto your layout which randomly generate a new shape each time you click on it.";
fDesc[4] = "assets for effortless retrieval and presentation. Expression Media makes digital asset management easy—just drag and drop to import more than 100 different media formats, including digital RAW files.";
fDesc[6] = "remote control. It also provides help desk, reports, and more.";
fDesc[7] = "large companies. It'll enable admins to take full control of all network assets with hardware and software tracking, device audit, etc.";
fDesc[8] = "minimizing as much as possible times and cost involved. As mentioned above, this version can work over a network – even Internet – allowing multiple users share the information stored in the database. The program implements a neat and intuitive interface and supports bar codes.";
fDesc[9] = "you streamline your fixed asset organization and record keeping. You will be able to quickly and easily keep track of the current location of your assets and who they are currently assigned to. Maintain vendor info, employee data and maintenance records. AssetManage eliminates the headaches of calculating asset depreciation by automatically generating depreciation tables using the Straight-Line, Double-Declining Balance, 150% Declining Balance, Straight Percentage or Sum of Years Digits depreciation methods. - Supports an unlimited number of locations and assets. - Attach files and Internet links to your asset records. A great way to keep track of related documents such as invoices or maintenance documents. - Select from the AssetManage library of standard reports or easily create your own. Standard reports are automatically calculated and formatted. - Reports can be exported to Excel,...";
fDesc[10] = "textures. By allowing computer artists to publish and sell their own assets quickly and easily, Turbo Squid creates the fastest growin...";
fDesc[11] = "large & small depend upon a collection of hardware and software networks, systems and databases to remain competitive.";
fDesc[12] = "your personal assets. Prove the existence and value of stolen or destroyed assets to your insurance company when needed. Expect the Unexpected.";
fDesc[13] = "intuitive interface, ease of use and minimum learning process. Extensive reporting to cater for all requirements.";
fDesc[14] = "You can enter up to 4 user defined fields to store custom information, plus there is a extensive note field.";
fDesc[15] = "See who?s responsible for an item. Calculate depreciation. Easy barcode printing and reporting.";
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 = '...';
}
}