var fDesc=new Array();
fDesc[0] = "My Auction Search is a personal eBay search manager and multi-tabbed auction search browser for Windows XP, Vista and Windows 7.
Main features:
-Organize, edit, and save 100s of eBay searches.
-Run up to 10 eBay searches at the same time.
-View multiple results AND multiple auction items at the same time.
-Track an unlimited number of auctions.
-Integrated auction search engine, search manager and multi-browser tool all in one.
-Organize and save all your eBay searches - from 1 to 100's.
-Run up to 10 searches at a time.
-Display multiple search results and multiple auction items within the same program.
-Faster browsing - No more clicking back and forth between results and items.";
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 = '';
}
}