function pert(id)
{
deja_dit();
h=document.getElementById('hpert'+id).value;
h_bis=document.getElementById('hpaspert'+id).value;
if(h==0 || h==2)
{
document.getElementById('hpert'+id).value=1;
document.getElementById('pert'+id).style.border='2px solid #20598E';
document.getElementById('pert'+id).style.color='#20598E';
document.getElementById('pert'+id).style.background='#F9FAFB';
document.getElementById('pert'+id).style.padding='2px';
if(h_bis==1)
{
paspert(id);
}
}
else
{
document.getElementById('hpert'+id).value=2;
document.getElementById('pert'+id).style.border='0px solid #20598E';
document.getElementById('pert'+id).style.color='';
document.getElementById('pert'+id).style.background='';
document.getElementById('pert'+id).style.padding='0px';
}
}

function paspert(id)
{
deja_dit();
h=document.getElementById('hpaspert'+id).value;
h_bis=document.getElementById('hpert'+id).value;
if(h==0 || h==2)
{
document.getElementById('hpaspert'+id).value=1;
document.getElementById('paspert'+id).style.border='2px solid #20598E';
document.getElementById('paspert'+id).style.color='#20598E';
document.getElementById('paspert'+id).style.background='#F9FAFB';
document.getElementById('paspert'+id).style.padding='2px';
if(h_bis==1)
{
pert(id);
}
}
else
{
document.getElementById('hpaspert'+id).value=2;
document.getElementById('paspert'+id).style.border='0px solid #20598E';
document.getElementById('paspert'+id).style.color='';
document.getElementById('paspert'+id).style.background='';
document.getElementById('paspert'+id).style.padding='0px';
}
}

function deja_dit()
{
test=document.getElementById('deja_dit').value;
if(test==0)
{
document.getElementById('deja_dit').value=1;
alert("merci de participer au développement d'eguens.com !\n\n N'oubliez pas de valider en bas de page pour que vos indications soient prisent en compte !");
}
}

function ajax_pertinence()
{
nbr=document.getElementById('nombrepert').value;
var champ='';
nbr--;
for(i=0; i<=nbr ; i++)
{
h1=document.getElementById('hpert'+i).value;
h2=document.getElementById('hpaspert'+i).value;
id=document.getElementById('id_voc'+i).value;
id_phrase=document.getElementById('id_phrase'+i).value;
if(h1==1)
{
champ=champ+"&id_voc"+i+"=ouiaa"+id+"aa"+id_phrase;
}
if(h2==1)
{
champ=champ+"&id_voc"+i+"=nonaa"+id+"aa"+id_phrase;
}
}
if(champ!="")
{
champ=champ+"&nbr="+nbr;
}
else
{
champ="nbr="+nbr;
}
var req; 
    try {  req = new ActiveXObject('Msxml2.XMLHTTP');   }
    catch (e) 
    {
        try {   req = new ActiveXObject('Microsoft.XMLHTTP');   }
        catch (e2) 
        {
          try {  req = new XMLHttpRequest();     }
          catch (e3) {  req = false;   }
        }
     }
	 
alert("veuillez patienter...");	

req.onreadystatechange = function()
	{ 		
		if(req.readyState == 4)
		{ 
		alert("Votre avis a été enregistré ! \n \n Merci de votre coopération !");	
		} 
	}	
	
	
req.open("GEt", "ajax/pertinence.php?"+champ, true); 
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); 
req.send(null);
}