var fDesc=new Array();
fDesc[0] = "eMagicOne Store Manager for PrestaShop is a unique tool for managing your online store effectively.
Main Features:
- Manage product names and descriptions for multiple languages if you have multi-language store.
- Edit product description using Visual WYSIWYG HTML editor.
- Manage product images, automatically resize and upload.
- Assign multiple categories to products at once.
- Easy product navigation. Quick product search and multi-store search with advanced search options, multiple filters, etc.
- Export products from your shopping cart database into Excel/HTML file.
- Import products from files provided by your supplier into your PrestaShop store database.
- Update products using Excel or HTML file from your supplier.
- Quickly manage product attributes using Extended attribute editor.
- Add, edit, delete attributes, options and value.";
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 = '';
}
}