// Fonction de changement de la barre de status

function mouseout(){
  window.status="";
}

function mouseover(){
  window.status='Ajouter à votre selection';
}

function mouseover_en(){
  window.status='Add this offer to your selection';
}

function mouseover1(){
  window.status='Envoyer cette annonce par email';
}

function mouseover1_en(){
  window.status='Send this offer by mail';
}

function mouseoverInformation(){
  window.status='Envoyer une demande d\'informations par email'
}

function centrePop(url,largeur,hauteur) { // centre le PopUp sur l'écran
  var gauche = (screen.width - largeur)/2
  var haut =  (screen.height - hauteur)/2
  return window.open(url,"","width="+largeur+",height="+hauteur+",left="+gauche+",top="+haut)
}