// Compatible Netscape 4 - Netscape 6 - Internet Explorer
function Vote()
{
	longueur = document.vote.choix_vote.length;
	for (i = 0; i < longueur; i++) {
		if (document.vote.choix_vote[i].checked) {
			document.vote.choix2.value = document.vote.choix_vote[i].value;
		}
	}
	window.location.href = 'accueil.php?code_ask=' + document.vote.code_ask.value + '&choix_vote=' + document.vote.choix2.value;
}
