+/**
+ * Evenement déclanché lors de l'insertion du lien de la conversation dans le message courant.
+ */
+Conversation.prototype.eventLien = function(fun)
+{
+ var thisConversation = this
+
+ jQuery("#conversations #" + this.getId() + " .titre .lien").click(
+ function()
+ {
+ fun(thisConversation.num)
+ }
+ )
+}
+
+/**
+ * Evenement déclanché lors de la fermeture de la conversation.
+ */
+Conversation.prototype.eventFermer = function(fun)
+{
+ var thisConversation = this
+
+ jQuery("#conversations #" + this.getId() + " .titre .fermer").click(
+ function()
+ {
+ fun(thisConversation.num)
+ }
+ )
+}
+