function poll(page) {
	window.open(page,'popup','width=430,height=300,toolbar=0,scrollbars=1');	
}

function pic(page) {
	window.open(page,'popup','width=460,height=610,toolbar=0,scrollbars=0');	
}

function pic_ad(page) {
	window.open(page,'popup','width=825,height=618,toolbar=0,scrollbars=1,resizable=1');	
}

function pic_revue(page) {
	window.open(page,'popup','width=460,height=610,toolbar=0,scrollbars=0');	
}

function invoice(page) {
	window.open(page,'popup','width=850,height=500,toolbar=1,scrollbars=1');	
}

function form_start(topanier)
{
	if(topanier.start.value == "")
	alert('Sélectionnez un tirage de départ');
	else
	topanier.submit();
}
/**
XML liste déroulante zone/pays
*/
	function sendData(param, page)
	{
		if(document.all)
		{
			//Internet Explorer
			var XhrObj = new ActiveXObject("Microsoft.XMLHTTP") ;
		}//fin if
		else
		{
		    //Mozilla
			var XhrObj = new XMLHttpRequest();
		}//fin else

		//définition de l'endroit d'affichage:
		var content = document.getElementById("contenu");
		
		XhrObj.open("POST", page);

		//Ok pour la page cible
		XhrObj.onreadystatechange = function()
		{
			if (XhrObj.readyState == 4 && XhrObj.status == 200)
				content.innerHTML = XhrObj.responseText ;
		}

		XhrObj.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		XhrObj.send(param);
	}//fin fonction SendData