var fDesc=new Array();
fDesc[0] = "ElekNet is a business center product with great features.
Features:
-Access inventories in real-time and submit an order, 24/7.
-You can place your orders until 9h pm* (according to the area) at the main warehouse for next-day delivery.* (deadlines may vary according to the area)
-Transfer the most important products in your personal list using our database of roughly 160,000 products.
-View the status of acknowledgments of receipts of all your orders, for follow-up or searching purposes.
-Our global search system will help you to find the products you need. You can then add them to your personal list, an assembly or a purchase order.
-The assembly lists allow you to group products to obtain your purchase prices, and to apply a mark-up percentage to calculate your selling price.
-The products history module is a practical tool that allows you to check for products already ordered.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}