// JavaScript Document
function sondage($var,$var2){
$.ajax({
   type: "POST",
   url: "ctrl/sondage.php",
   data: "id="+$var+"&choix="+$var2,
   success: function(msg){
	   
	   
	   $("#sondage").html(msg);
   }
 });

   
}



function favoris() {
if ( navigator.appName != 'Microsoft Internet Explorer' )
{ window.sidebar.addPanel("F1-Alonso","http://www.f1-alonso.com",""); }
else { window.external.AddFavorite("http://www.f1-alonso.com","F1-Alonso"); } }

var tamano = 12;
function aumentar () {

	if(tamano<15){
	tamano = tamano + 1;
	document.getElementById("accueil1").style.fontSize = tamano+"px";}}
	
	
	
	

function reducir () {

	if(tamano>12){

tamano = tamano - 1;
document.getElementById("accueil1").style.fontSize = tamano+"px";}}
