var fDesc=new Array();
fDesc[0] = "The AMEC CYPHO-150 is a low cost, dual-channel AIS receiver. It receives AIS navigation data from AIS-equipped vessels nearby and improves navigation safety. The CYPHO-150 is designed to inter-operate with AIS Class A or Class B transponders and any other AIS stations operating on the AIS VHF data link. The CYPHO-150S is also available with an integrated VHF antenna splitter.
The Cypho Configuration tool allows you to change various aspects of the supported device.";
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 = '';
}
}