function EXTPUBInscription(){
	var ogSelf = this;
	
	this.Envoyer = function(){
		this.value = "Envoi en cours ...";
		Elem("FormEnvoi").submit();
	}
	
	this.Annuler = function(){
		Elem("Nom").value = "";
		Elem("Courriel").value = "";
		Elem("Commentaires").value = "";
		Elem("Entreprise").value = "";
		Elem("Telephone").value = "";
		Elem("Adresse").value = "";
		window.parent.HideElement("conteneur-inscription");
		window.parent.ShowElement("conteneur-principal");
	}
	
	
}
