function selectionne(i){
var xhr_object = null;   
   
 if(window.XMLHttpRequest) // Firefox   
   xhr_object = new XMLHttpRequest();   
 else if(window.ActiveXObject) // Internet Explorer   
    xhr_object = new ActiveXObject("Microsoft.XMLHTTP");   
 else { // XMLHttpRequest non supporté par le navigateur   
  alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");   
    return;   
}

xhr_object.open("POST","select.php", true);

xhr_object.onreadystatechange = function() {   
       if(xhr_object.readyState == 4){
	   	  alert("Cette annonce vient d'être ajoutée à vos sélections");
		  window.location.reload();
		} 
}   
   
    xhr_object.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); 
	var data="id_annonce="+i;  
    xhr_object.send(data);   
}
//modifier une annonce
function modif_annonce(i){
	w=window.open('','fenetre','toolbar=no,scrollbars=yes,resizable=yes,width=700,height=650,top=10,left=10');
	w.location.href="../admin/modif_annonce.php?id_annonce="+i;
}
//supprimer une annonce
function sup_annonce(i){
reponse=confirm("Attention cette opération est irréversible\n Comfirmez-vous cette action ?");
	if(reponse){
		z=window.open("","supannonce","toolbar=no,scrollbars=no,resizable=no,width=300,height=150,top=10,left=10");
		z.location.href="../admin/sup_annonce.php?id_annonce="+i;
	}
}
function sup_annonce2(i){
reponse=confirm("Attention cette opération est irréversible\n Comfirmez-vous cette action ?");
	if(reponse){
		z=window.open("","supannonce","toolbar=no,scrollbars=no,resizable=no,width=300,height=150,top=10,left=10");
		z.location.href="admin/sup_annonce.php?id_annonce="+i;
	}
}
//visualiser annonce
function info(i){
	w=window.open('','fenetre','toolbar=no,scrollbars=yes,resizable=yes,width=700,height=650,top=10,left=10');
	w.location.href="pages/info.php?id_annonce="+i;
}
//vérification du formulaire d'envoi
function verif_envoi(){
	if (document.form2.nom.value==""){
		alert("le nom est un champ obligatoire");
		document.form1.nom.focus();
		return false;
	}
	if (document.form2.prenom.value==""){
		alert("le prénom est un champ obligatoire");
		document.form1.prenom.focus();
		return false;
	}
	if (document.form2.mail.value.indexOf('@')==-1){
		alert("l'adresse mail n'est pas valide");
		document.form1.mail.focus();
		return false;
	}
	if(document.form2.code.value==""){
		alert("Veuillez entrer le code de sécurité dans le champ correspondant");
		document.form1.code.focus();
		return false;
	}
	if (document.form2.message.value==""){
		alert("le message est un champ obligatoire");
		document.form1.message.focus();
		return false;
	}
}
function video(i,j){
w=window.open('','fenetre','toolbar=no,scrollbars=yes,top=10,left=10,width=680,height=550');
w.location.href="pages/player.php?video="+i+"&id_annonce="+j;
}
function video2(i,j){
w=window.open('','fenetre','toolbar=no,scrollbars=yes,top=10,left=10,width=680,height=550');
w.location.href="player.php?video="+i+"&id_annonce="+j;
}