var fDesc=new Array();
fDesc[0] = "Morse Code Master is an innovative, audio-visual learning software solution for pilots and radio enthusiasts.
Morse Code Master offers comprehensive training for developing your morse code skills. It is a valuable asset for any training pilot and radio licence student or holder.
Main Features:
- Highly visual and interactive graphical user interface
- 'Slow Code' method : user controllable within a range of 3 to 15 words per minute
- Farnsworth method : user definable intra/inter character and inter word timing parameters
- Real time, accurate timing calibration can be set for individual computers
- Performance monitoring and displayed score progress monitoring
- LEARNING mode provides a strong audio-visual feedback environment in which to quickly assimilate morse code
- TRAINING mode then takes over, putting you in full control of how and at what speed you increase your skill
- 3 levels of use are available : 1. letters only; 2. letters & numbers; 3. letters, numbers & punctuation; plus text coding
- Context sensitive help which is designed to operate as an integrated instruction manual";
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 = '';
}
}