var fDesc=new Array();
fDesc[0] = "MarineUpdater is a Windows-based PC application which works in conjunction with a Garmin USB card reader, a Garmin data card, and an Internet connection to generate software update cards for your fixed-mount Garmin marine products. Products which support MarineUpdater will program a data card with information about your Garmin marine product and other Garmin marine products which are connected to it.";
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 = '';
}
}