function EXTPUBEnvoyerAmi(){
	var ogSelf = this;
	
	this.Envoyer = function(){
		this.value = "Envoi en cours ...";
		Elem("FormEnvoi").submit();
	}
	
	this.Annuler = function(){
		Elem("NomDestinataire").value = "";
		Elem("CourrielDestinataire").value = "";
		Elem("NomExpediteur").value = "";
		Elem("CourrielExpediteur").value = "";
		Elem("Commentaires").value = "";
		window.parent.HideElement("conteneur-envoyer-ami");
		window.parent.ShowElement("conteneur-principal");
	}
}
