var fDesc=new Array();
fDesc[0] = "AudioCompass is a navigation program for visually-impaired sailors.
AudioCompass is a simple program: it connects to a vessel’s NMEA-0183 data network, and displays heading course and waypoint information on a compass dial.
Audio tones are generated to assist in the steering of the boat, and speech annunciation is provided for
the relevant navigation data.";
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 = '';
}
}