var fDesc=new Array();
fDesc[2] = "Webshop with point and click ease. This powerful ecommerce solution is trusted by over 203,000 online shops around the world.";
fDesc[3] = "items, group them together, and edit descriptions, prices, and images quickly and easily. You control all aspects of pricing.";
fDesc[4] = "the most popular forms of payment - Paypal. With this program you will be able to create your online shop without knowing how to integrate PayPal.";
fDesc[5] = "price tag. Atrex provides for invoicing, orders, quotes, purchase orders, AR, AP, and real time inventory control.";
fDesc[6] = "software, HTML, programming, or hosting company required.";
fDesc[7] = "the web site for pre-built apps including a virtual shopping cart, chat, conference, etc.";
fDesc[8] = "Internet. The purpose of this store builder is to provide an easy-to-use interface that automatic creates all the HTML files necessary to run your store.";
fDesc[9] = "owners need to sell their products over the Internet.";
fDesc[10] = "inviting process for your customers to order your products and services online! The Windows95 (or NT) based shopping cart applications let you create catalogs and CGIs to implement the entire online ordering system easily and efficiently. You have the choice to host the CGI on your server or on WebGenie Softwares secure server.";
fDesc[11] = "hosting account with a compatible web host. Based on web design principles that are proven to sell products on the web. Yo...";
fDesc[12] = "advanced features such as a fully featured content management system, a forum, helpdesk support system and integration with Froogle and Paypal.";
fDesc[13] = "facilities. Do you have products that you would like to sell on the Internet? ezimerchant Professional is for you!";
fDesc[15] = "shopping cart is ready. A simple text file database serves this shopping cart.";
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 = '...';
}
}