function chrono(){
  jour=Date.parse("January 01, 2011 GMT-11" ) - Date.parse(new Date);
  jours=Math.round(jour/(24*60*60*1000));
  
  compteur=str_split(jours);
  var ret="";
  for(x in compteur){
    ret += "<img src='http://www.100anseedf.fr/img/design/"+compteur[x]+".png' />";
  }

  return ret;
}

function str_split ( f_string, f_split_length){
    f_string += '';

    if (f_split_length == undefined) {
        f_split_length = 1;
    }
    if(f_split_length > 0){
        var result = [];
        while(f_string.length > f_split_length) {
            result[result.length] = f_string.substring(0, f_split_length);
            f_string = f_string.substring(f_split_length);
        }
        result[result.length] = f_string;
        return result;
    }
    return false;
}

function fbs_click() {
  u=location.href;
  t=document.title;
  window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
  return false;
}
