//Set field values function Code(id) { //Special codes: //000 is to clear the code //555 is to select the code if (id == "000") { if (window.document.form.code.value == "") { window.alert("No code to clear!"); } if (window.document.form.code.value != "") { window.document.form.code.value = ""; } } if (id == "555") { if (window.document.form.code.value == "") { window.alert("No code to select!"); } if (window.document.form.code.value != "") { window.document.form.code.focus(); window.document.form.code.select(); } } //Normal code numbers if (id == "001") { var text = "\"LNR"; window.document.form.code.value = text; } if (id == "002") { var text = "\"LNR"; window.document.form.code.value = text; } if (id == "003") { var text = "\"Zoe"; window.document.form.code.value = text; } if (id == "004") { var text = "\"Zoe"; window.document.form.code.value = text; } }