function changePage(indexSelectionne,objet)
{
	var animal = document.getElementById(objet)[indexSelectionne].value;
	window.location.href = animal+".php";
}

function img(chemin,width,height){
	 var myWindow=window.open("../image.php?img="+chemin,'_blank','width='+width+',height='+height+',resizable=no');
  	 myWindow.moveTo(screen.width/2-(width/2),screen.height/2-(height/2))
}