function ouvrir_popup_enquete() {
	// Create the popup
	var w = window.open('', 'Survey_Invite', 'width=300, height=200, menubar=no, scrollbars=no, toolbar=no, location=no, resizable=no, top=50, left=50');
	var d = w.document;
	// Create the popup's html
	d.write("<head><title>Take a survey</title></head>");
	d.write("<body>");
	
	// BEGINNING OF POPUP TEXT CONTENT
	d.write("<b>Merci de donner votre avis</b><br><br>");
	d.write("Votre avis est tres important.<br>");
	d.write("Voulez vous continuer?<br>");
	// END OF POPUP TEXT CONTENT
	
	// Finish creating popup's html
	d.write("<form onsubmit=\"window.open('http://www.partners.vovici.net/se.ashx?s=705E3ECA53FEDDEC&a=" + document.URL + "');self.close();\">");
	d.write("<div align='right'>");
	d.write("<input type='submit' value=' Oui '>&nbsp;");
	d.write("<input type='button' value=' Non ' onclick='self.close();'>");
	d.write("</div>");
	d.write("</form>");
	d.write("</body>");
}

function supprimer_bouton_enquete() {
  var bouton_enquete = document.getElementById('bouton_enquete');
  bouton_enquete.parentNode.removeChild(bouton_enquete);
}

