	



var geoloc=-1;
var couples = [];

function coupler_flash_transparent( id_flash, id_binome ){
    
    couples[ id_binome ] = id_flash;

}


function geolocaliser(){
    document.write('<script type="text/javascript" src="http://www.24h00.com/vendor/geoloc/locate_ip.php?id_emplacement=1574" ></script>');
}
 

function EcrireCookie(nom, valeur, duree)
  // ecrit un cookie qui expire le lendemain matin à minuit
  {
    expires = new Date();;
    expires.setDate(expires.getDate()+duree);
    expires.setHours(0);
    expires.setMinutes(1);
    document.cookie=nom+"="+valeur+"; expires="+expires.toGMTString();
  }
 
function EcrireCookieTiers(valeur, duree)
  // ecrit un cookie qui expire le lendemain matin à minuit par defaut
  { 
    document.write("<script src='http://adserver.24h00.com/redirections/campagnes/cookie_tiers.php?expires="+duree+"&id_camp="+valeur+"'></script>");
  }

function getCookieVal(offset)
  {
    var endstr=document.cookie.indexOf (";", offset);
    if (endstr==-1) endstr=document.cookie.length;
    return unescape(document.cookie.substring(offset, endstr));
  }
 
function LireCookie(nom)
  // recupere la valeur d'un cookie
  {
    var arg=nom+"=";
    var alen=arg.length;
    var clen=document.cookie.length;
    var i=0;
    while (i<clen)
      {
	var j=i+alen;
	if (document.cookie.substring(i, j)==arg) return getCookieVal(j);
	i=document.cookie.indexOf(" ",i)+1;
	if (i==0) break;
	
      }
    return 0;
  }

function Media( nom, code_balise, part_vue, capping, region, jours ){
  // "classe" media
  
  this.nom = nom;
  this.code_balise = code_balise;
  this.part_vue = part_vue;
  this.capping = capping;
  this.region = region;
  this.jours = jours;
  
}

function Medias(){
  // classe "medias": tableau de medias, dont la somme des parts de voix ne depasse jamais 100% pour une region
  this.contenu = [];
  this.somme = [];
  for( i=0; i<7; i++ ){
    this.somme[i] = [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];
    this.somme[i][-1] = 0;
  }
}
 
function ajouteMedia( media, medias ){
  // on ajoute un media au tableau de medias
  medias.contenu.push( media );
  for( i=0; i<7; i++ ){
    // on detaille pour chaque jourœ
    if ( media.jours[i] > 0 ){
      if (media.region >= 0) medias.somme[i][media.region] += media.part_vue;
      else{
	var j = -1;
	while( j < (medias.somme.length - 1) ){
	  medias.somme[i][j] += media.part_vue;
	  j ++;
	}
      }
    }
  }
}

function loadpopunder(url){
 winfeatures="width=800,height=510,scrollbars=1,resizable=1,toolbar=1,location=1,menubar=1,status=1,directories=1"
 win2=window.open(url,"",winfeatures)
 win2.blur()
 window.focus()
}

function afficheMedia( m ){ 
  if( m.capping > 0 ){
    nb = LireCookie(m.nom);
    nb ++; 
    EcrireCookie(m.nom, nb, 7);
  } 
  code = m.code_balise;
  if( couples[m.nom] ){
    for( i=0; i<medias_24_1574.contenu.length - 1; i++ ){
      if( medias_24_1574.contenu[i].nom ==  couples[m.nom] && (LireCookie(medias_24_1574.contenu[i].nom) < medias_24_1574.contenu[i].capping || medias_24_1574.contenu[i].capping == -1 )){
       nb = LireCookie(medias_24_1574.contenu[i].nom);
       nb ++;
       EcrireCookie(medias_24_1574.contenu[i].nom, nb, 7);

	code += "<div id='flash_transparent_24h00' style='position:absolute; text-align:center; z-index:9; top:100px; left:0; width:100%'>";
	code +=  medias_24_1574.contenu[i].code_balise;
	code += "</div>";
      }
    }
  }
  document.write( code ); 
  EcrireCookieTiers(campagne+":"+m.nom,14*24*3600); 
  return 0;
}      

function test_t(n){
  //test si le tableau contient un "0"
  for (i in n){
    if( n[i] == 0) return 1;
  }
  return 0;
}

function affichage( medias ){

  n=[0];
  // on stocke dans un tableau des booleens qui indiquent si le capping max d'une publi a ete atteint
  while ( test_t(n) ){
    // on boucle jusqu'à tomber sur une publi dont le capping max n'a pas été atteint ( si elle existe ) ou dont la part de voix n'est pas 0
   
    rnd = Math.random()*medias.somme[jour_24][geoloc];
    //alert( medias.somme[jour][geoloc]+"/"+rnd);
    sup = 0;
    inf = 0;
    for (m=0; m<medias.contenu.length; m++){
      if( medias.contenu[m].jours[ jour_24 ] > 0 ){	
	if ( medias.contenu[m].region == -1 || medias.contenu[m].region == geoloc ){
	  inf = sup;
	  sup += medias.contenu[m].part_vue;
	}
	n[m] = 0;
	if ((LireCookie(medias.contenu[m].nom) >= medias.contenu[m].capping && medias.contenu[m].capping >=0 ) || medias.contenu[m].part_vue == 0){
	  // si le capping max a été atteint, on marque la publi dans le tableau n
	  n[m] = 1;
	}
	if ( geoloc != medias.contenu[m].region && medias.contenu[m].region >= 0 ){
	  // si le media ne correspond pas à la region on le marque dans le tableau
	  n[m] = 1;
	}
	//alert( n[m]+"/"+inf+"/"+rnd+"/"+sup);
      
	if ((LireCookie(medias.contenu[m].nom) < medias.contenu[m].capping || medias.contenu[m].capping < 0 )
	    && rnd <= sup && rnd >= inf && n[m] == 0
	    && ( medias.contenu[m].region == -1 || geoloc == medias.contenu[m].region )){
	  afficheMedia(medias.contenu[m]);
    return 1;  
}
      }	
      else{
	// si le media ne doit pas être affiché aujourd'hui, on le marque dans le tableau
	n[m] = 1;
      }
    }
    
  }
  return 0;
}
    
complement_24 = [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];
complement_24[-1] = 0;

 today_24 = new Date();
 jour_24 = today_24.getDay();
medias_24_1574 = new Medias();
m_24 = new Media("7426","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2372.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2372.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_daylimotion_1'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("7428","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2373.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2373.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_daylimotion_2'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("7788","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2457.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2457.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_maxime_huscenot_ASP'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("8036","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2520.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2520.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_ASP_LeeAnnJeremy'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("8196","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2566.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2566.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_calendrier2010'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("8609","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2653.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2653.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_surfingday'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("8612","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2655.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2655.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_SURFSESSION_28.05'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("8684","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2684.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2684.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_AIF_08.06.2010'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("8995","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2811.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2811.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_AIF_Guadeloupe'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("9058","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2832.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2832.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_lekiosque'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("9212","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2878.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2878.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_Amaury_09.10'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("9378","<a href='http://adserver.24h00.com/redirections/pubs/redirection_2960.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_2960.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_AIF_09.09.2010'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("9563","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3026.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3026.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_AIF_20.09.2010'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("9737","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3059.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3059.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_Champion_Tandem'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("10036","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3123.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3123.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_AIF_18.10.2010'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("10051","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3132.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3132.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_PLANET_SURFESTIVAL'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("10132","<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='300' height='250'><param name='movie' value='http://adserver.24h00.com/redirections/pubs/pub_3178.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3178.php?place=1574'> <param name='quality' value='high'> <param name='wmode' value='opaque'> <embed src='http://adserver.24h00.com/redirections/pubs/pub_3178.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3178.php?place=1574' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='300' height='250' wmode='opaque'></embed></object>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("10133","<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='300' height='250'><param name='movie' value='http://adserver.24h00.com/redirections/pubs/pub_3180.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3180.php?place=1574'> <param name='quality' value='high'> <param name='wmode' value='opaque'> <embed src='http://adserver.24h00.com/redirections/pubs/pub_3180.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3180.php?place=1574' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='300' height='250' wmode='opaque'></embed></object>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("10568","<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='300' height='250'><param name='movie' value='http://adserver.24h00.com/redirections/pubs/pub_3330.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3330.php?place=1574'> <param name='quality' value='high'> <param name='wmode' value='opaque'> <embed src='http://adserver.24h00.com/redirections/pubs/pub_3330.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3330.php?place=1574' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='300' height='250' wmode='opaque'></embed></object>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("10570","<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='300' height='250'><param name='movie' value='http://adserver.24h00.com/redirections/pubs/pub_3331.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3331.php?place=1574'> <param name='quality' value='high'> <param name='wmode' value='opaque'> <embed src='http://adserver.24h00.com/redirections/pubs/pub_3331.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3331.php?place=1574' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='300' height='250' wmode='opaque'></embed></object>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("10659","<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='300' height='250'><param name='movie' value='http://adserver.24h00.com/redirections/pubs/pub_3333.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3333.php?place=1574'> <param name='quality' value='high'> <param name='wmode' value='opaque'> <embed src='http://adserver.24h00.com/redirections/pubs/pub_3333.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3333.php?place=1574' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='300' height='250' wmode='opaque'></embed></object>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("10661","<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='300' height='250'><param name='movie' value='http://adserver.24h00.com/redirections/pubs/pub_3332.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3332.php?place=1574'> <param name='quality' value='high'> <param name='wmode' value='opaque'> <embed src='http://adserver.24h00.com/redirections/pubs/pub_3332.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3332.php?place=1574' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='300' height='250' wmode='opaque'></embed></object>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("10664","<script language='javascript'>\n var edt_id_site = '46220';\n var edt_id_banner = '199274';\n var edt_id_banner_gif = '199275';\n var edt_id_campaign = '101517';\n var edt_id_publisher = '0';\n var edt_s_verif1 = '347011';\n var edt_s_verif2 = '347012';\n var edt_w = '300';\n var edt_h = '250';\n var edt_is_flash = 1;\n var edt_tag_version = 2;\n</script>\n <script language='javascript' src=http://home.edt02.net/emc/banner/edatis.js></script>\n<noscript>\n  <a href=http://home.edt02.net/emc/banner/mstbc.php?c=46220-199275-101517-0-347012' target=_blank>\n   eeeee<img src='http://home.edt02.net/emc/banner/mstbo.php?c=46220-199275-101517-0-347012&edt_rnd=[timestamp]' border=0 width=300 height=250>\n </a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("10665","<script language='javascript'>\n var edt_id_site = '46220';\n var edt_id_banner = '199276';\n var edt_id_banner_gif = '199277';\n var edt_id_campaign = '101517';\n var edt_id_publisher = '0';\n var edt_s_verif1 = '347013';\n var edt_s_verif2 = '347014';\n var edt_w = '300';\n var edt_h = '250';\n var edt_is_flash = 1;\n var edt_tag_version = 2;\n</script>\n <script language='javascript' src=http://home.edt02.net/emc/banner/edatis.js></script>\n<noscript>\n  <a href=http://home.edt02.net/emc/banner/mstbc.php?c=46220-199277-101517-0-347014' target=_blank>\n   eeeee<img src='http://home.edt02.net/emc/banner/mstbo.php?c=46220-199277-101517-0-347014&edt_rnd=[timestamp]' border=0 width=300 height=250>\n </a>\n </noscript>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("10990","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3399.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3399.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_SURFSESSION_04.02.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("11105","<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='300' height='250'><param name='movie' value='http://adserver.24h00.com/redirections/pubs/pub_3422.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3422.php?place=1574'> <param name='quality' value='high'> <param name='wmode' value='opaque'> <embed src='http://adserver.24h00.com/redirections/pubs/pub_3422.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3422.php?place=1574' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='300' height='250' wmode='opaque'></embed></object>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("11180","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3432.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3432.png?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_SURFRIDERS_28.02.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("11182","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3433.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3433.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_SURFSESSION_03.03.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("11426","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3476.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3476.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_SURFSESSION_01.04.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("11649","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3554.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3554.JPG?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_SURFSESSION_27.04.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("11953","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3652.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3652.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_surfsession_03.06.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12034","<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='300' height='250'><param name='movie' value='http://adserver.24h00.com/redirections/pubs/pub_3688.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3688.php?place=1574'> <param name='quality' value='high'> <param name='wmode' value='opaque'> <embed src='http://adserver.24h00.com/redirections/pubs/pub_3688.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3688.php?place=1574' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='300' height='250' wmode='opaque'></embed></object>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12099","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3701.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3701.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_surfsession_11.07.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12114","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3713.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3713.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_CANELLE_18.07.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12116","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3712.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3712.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_JDS_18.07.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12149","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3725.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3725.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_surfsession_04.08.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12237","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3756.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3756.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_surfsession_30.08.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12239","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3757.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3757.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_surfsession_30.08.11(2)'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12243","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3760.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3760.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_surfsession_30.08.11(3)'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12260","<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='300' height='250'><param name='movie' value='http://adserver.24h00.com/redirections/pubs/pub_3774.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3774.php?place=1574'> <param name='quality' value='high'> <param name='wmode' value='opaque'> <embed src='http://adserver.24h00.com/redirections/pubs/pub_3774.swf?place=1574&clictag=http://adserver.24h00.com/redirections/pubs/redirection_3774.php?place=1574' quality='high' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='300' height='250' wmode='opaque'></embed></object>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12356","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3802.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3802.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_surfsession_27.09.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12358","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3803.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3803.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_salonglisseur_27.09.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12415","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3833.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3833.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_championnatsurf_24.10.11'></a>",0 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12421","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3838.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3838.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_championnatsurf_27.10.11'></a>",40 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12450","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3850.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3850.gif?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_surfsession_08.11.11'></a>",20 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
m_24 = new Media("12452","<a href='http://adserver.24h00.com/redirections/pubs/redirection_3851.php?place=1574' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_3851.jpg?place=1574' width='300' height='250' border='0' alt='300x250_autopromo_fedesurf_panam_09.11.11'></a>",40 ,-1 ,-1,new Array( '1', '1', '1', '1', '1', '1', '1'));
ajouteMedia( m_24, medias_24_1574 );
if (!complement_24[-1] && !complement_24[geoloc]){
m_24 = new Media('0','',100-medias_24_1574.somme[jour_24][geoloc],-1,-1, [1,1,1,1,1,1,1] );
ajouteMedia( m_24, medias_24_1574 );
}
campagne = 474;
affichage(medias_24_1574);
 nbrSecondes = 8;
                         setTimeout('cacheFlash()',nbrSecondes*1000);
                         function cacheFlash()
                         {
                           if (  document.getElementById('flash_transparent_24h00')){
                                document.getElementById('flash_transparent_24h00').style.visibility='hidden';
                            }
                         }
