var fDesc=new Array();
fDesc[0] = "Vantage PC Link Plus allows you to:
- Upload and view Vantage screens on your PC
- Save Vantage screens as files with vehicle information and your comments
- Compare two files graphically (ex. "before repair" and "after repair") on your PC
- Print files graphically with your shop name at the top of the page
- Sort your files based on vehicle year, manufacturer, model, engine, component,status (good, bad, ?), date, or a word in the user-entered comments field.";
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 = '';
}
}