var fDesc=new Array(); fDesc[0] = "Auction Submit software helps you manage and control you're online auctions.
Features:
- the Current Auctions screen displays all of your auctions that are running.
- the main display shows the item number, title, closing date, current price, and auction site of each item.
- the bottom of the display also has three buttons.
- these buttons allow you to view an auction in more detail, end an auction early, and update the status of the current auctions."; 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 = ''; } }