// SendMessageMemory.js
// 2008-02-20
// Chieh Cheng

/*
   To use, add the following line to the <head></head> section:
     <script type="text/javascript" src="SendMessageMemory.js"></script>
*/

function changeNotify (textfield, chatroom)
{
  var message = textfield.value;

  if (message == "")
  {
    var cookie = new Cookie ("MESSAGE_MEMORY_" + chatroom);
    cookie.trash ();
  }
  else
  {
    var cookie = new Cookie ("MESSAGE_MEMORY_" + chatroom);
    cookie.setValue (message);
    cookie.deliver ();
  }
}

