function DisplayCC(obj) {
if (!document.layers) {
var txt = document.getElementById("CC_Case");
var txt2 = document.getElementById("case");
if (obj.value == "CC") {
txt.style.display = "inline";
txt2.style.display = "inline";
function DisplayCC(obj) {
if (!document.layers) {
var txt = document.getElementById("CC_Case");
var txt2 = document.getElementById("case");
if (obj.value == "CC") {
style.visibility= "visible"
txt2.style.display = "inline";
// gives the text field the name of the drop-down, for easy processing
txt.name = "Judge";
obj.name = ""; }
else {
txt.style.visibility= "hidden"
txt.name = "";
obj.name = "Judge"; }
}
}