var fDesc=new Array();
fDesc[0] = "Dealer Software features:
- Window Sticker: Create customize and print full color window stickers
- Contact Manager to completely track all clients that walk in your door. What they wanted, when they wanted to buy, photos of there trades and more.
- Quick Book Interface: Journal Entries, Customers, Invoices, Checks, charges, Notes, Bills, Credit Cards, Lists,vendors and set program defaults from Carlot Manager Software.
- Automation of your online presence";
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 = '';
}
}