void HideMessage(Hashtable h)
 {
     if (currentElement != null)
     {
         currentElement.Remove();
     }
 }
 void OnResponseClicked(string text, IConversationUiElement element)
 {
     conversation.SetSelectedChoice(text);
     InitialiseUIElements(conversation);
     element.Remove();
 }