function checkForOther(obj) {  if (!document.layers) {  var txt = document.getElementById("otherTitle");  if (obj.value == "other") {  txt.style.display = "inline";  // gives the text field the name of the drop-down, for easy processing  txt.name = "selTitle";  obj.name = "";  } else {  txt.style.display = "none";  txt.name = "";  obj.name = "selTitle";  }  } } /*** I left a space between Id and first ( so yahoo would not drop the code, should take that out ***/