//---[ ANNONCE SOMMAIRE VERS ANNONCE DETAIL ]----------------------------------------
function clicMenu(num) {

}
//---[ CALCUL LE NOMBRE DE CARACTERES DE LA ZONE DESCRIPTION ]----------------------------
function checkLen(target){
strLen=target.value.length
if(strLen>500){target.value=target.value.substring(0,500);charsLeft=500;}else{charsLeft=strLen;}document.form2.caracteres.value=charsLeft;
}

//---[ POUR OUVRIR UN POPUP AVEC LA PHOTO DE L'ANNONCE ]----------------------------

function popupcentree(page,largeur,hauteur,options) {
var top=(screen.height-hauteur)/2;
var left=(screen.width-largeur)/2;
window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

function clicMenu(num) {

  // Booléen reconnaissant le navigateur (vu en partie 2)
  isIE = (document.all)
  isNN6 = (!isIE) && (document.getElementById)

  // Compatibilité : l'objet menu est détecté selon le navigateur
  if (isIE) annonce_a = document.all['annonce_a' + num];
  if (isNN6) annonce_a = document.getElementById('annonce_a' + num);
  if (isIE) sommaire = document.all['sommaire' + num];
  if (isNN6) sommaire = document.getElementById('sommaire' + num);


  // On ouvre ou ferme
  if (annonce_a.style.display == "none"){
    // Cas ou le tableau est caché
    annonce_a.style.display = ""
    sommaire.style.display = "none"
  } else {
    // On le cache
    annonce_a.style.display = "none"
    sommaire.style.display = ""
   }
}






