var fDesc=new Array();
fDesc[0] = "Listomax™ is eBay listing software that makes it simple to list your items.
MAin features:
-One-time cost — no monthly fees
-Simple to use — no computer skills necessary
-FREE super-sizing of photos
-Fast listing and photo insertion
-Unlimited FREE photos per listing
-Crop and adjust within Listomax
-FREE scheduling
-Keep all listing and buyer information forever
-Revise listings live";
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 = '';
}
}