var fDesc=new Array();
fDesc[0] = "EasyMail is a Windows based application providing easy to use e-mail functionality for maritime and land mobile products.
E-mail has become more and more popular onboard commercial vessels, fishing boats as well as yachts. Inmarsat-C is often chosen as the easiest and most cost-efficient way to communicate.
To provide easy and trouble free e-mail functionality Thrane & Thrane A/S has developed easyMail, which is a Windows based Capsat® application for Inmarsat-C. easyMail is very similar to Microsoft Outlook®. It is extremely easy to install and use making it the perfect e-mail solution for people at sea.";
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 = '';
}
}