function GetValue(TheObj){
  OtherTextID=document.getElementById('OtherText');
  TheSel=TheObj.options[TheObj.selectedIndex];

  switch(TheSel.text){
    case 'Other >>':
      OtherTextID.style.display='inline';
      OtherTextID.focus();
      break;
    default:
      OtherTextID.style.display='none';
      break;}}

function GetTopic(){
  TopicID=document.getElementById('Topic');
  SelTopicID=document.getElementById('SelTopic');
  OtherTextID=document.getElementById('OtherText');
  SendToAddressID=document.getElementById('SendToAddress');

  TheSel=SelTopicID.options[SelTopicID.selectedIndex];

  switch(TheSel.text){
    case 'Other >>':
          TopicID.value=OtherTextID.value;
          break;
    default:
          TopicID.value=TheSel.text.replace(/ /g, "_");
          break;}

  SendToAddressID.value=TheSel.value;
  return true;}

