 <!-- // Cachotteries
  function ValidValues()
  {
    if ((document.Bulletin.emailaddr.value != "") &&(document.Bulletin.emailaddr.value != " "))
    {
       if ((document.Bulletin.emailaddr.value.indexOf('@',0) == -1) || (document.Bulletin.emailaddr.value.indexOf('.',0) == -1))
      {
        alert("L\'adresse de courrier électronique entrée n\'est pas d'un format valide.");
        return false;
      }
      else
      {
        return true;
      }
    }
    else
    {
      sMsg = "Certains champs sont vides. Veuillez vous assurer\n" + "de bien remplir le formulaire avant de le soumettre.";
      alert(sMsg);
      return false;
    }
  }

function PopupWin(Flag,PopupName,Url,PopupWidth,PopupHeight) {
	if(Flag != 0) {
		PopupDef=window.open(Url, PopupName,"width="+PopupWidth+",height="+PopupHeight+",resizable=no,scrollbars=yes,toolbar=no,status=no,location=no,directories=no");
		if ((navigator.appName == "Microsoft Internet Explorer") && (PopupDef != null)) {
			PopupDef.focus();
		}
	}
}
function showStats(form) {
	ItemType = "";
	i = 1;
	while (ItemType != "b")
	{
		Item = (form.elements[i]);
		ItemType = (Item.type.substring(0,1));
		ItemCheck = (Item.checked);
		if (ItemCheck && ItemType != "b")
		{
			ItemValue = (Item.value);
			break;
		}
		i++;
	}
	PopupWin(1,"Stats","http://www.infinit.com/cgi-bin/VoteMinute/vote.cgi?action=Voter&id="+escape(form.elements[0].value)+"&choix="+escape(ItemValue),"358","300");
}

function window_open(URL, width, height)
{
        window.open(URL, 'Envoyer', 'width='+600+',height='+600+',scrollbars=1,toolbar=no,menubar=yes,left=15,top=15');
}

