var fDesc=new Array(); fDesc[0] = "With this Enigma Codebook Tool, you can create code sheets with key settings for different models of German Enigma cipher machines. These sheets contain all necessary information to setup your Enigma. The program can create, show, save and print a single code sheet, valid for one month, or a complete year.
This tool can create codebooks for the 3-rotor Wehrmacht/Luftwaffe Enigma, the 3-rotor Kriegsmarine M3, also called Funkschlussel M, and the 4-rotor Kriegsmarine M4. The program generates random settings, depending the model, for the eight different normal and two special Beta and Gamma rotors, ringsettings and plugboard connections. There are also four compatible modes for the M4 to communicate with the M3 or with M3 and Wehrmacht/Luftwaffe machines. The program has a clear and simple user interface to view existing and create new sheets."; 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 = ''; } }