var fDesc=new Array();
fDesc[0] = "Express Lister is a Windows software program which helps you create listings in bulk and upload them to OZtion directly from your computer.
Main features:
- Import items from Turbo Lister including pictures.
- Automatic eBay to OZtion category matching.
- Synchronise listings between OZtion and Express Lister.
- vShop integration - Add/Edit/Delete vShop categories from within Express Lister and assign vShop categories to your items before uploading.
- Category Tags integration - Add/Edit/Delete category Tags from with Express Lister.
- Edit multiple items simultaneously.
- Preview your listing in a web browser.
- Create professional looking descriptions using the built-in HTML editor.
- Select and upload pictures from your computer or external sites.
- Save listing templates.
- Duplicate listings.
- Schedule auction start times.
- Upload single or multiple items at once.
- Keep track of items uploaded.";
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 = '';
}
}