function bloc(img, id,lien)
{  if (document.getElementById(id).style.display == "")
  {  document.getElementById(id).style.display = "none";
    //img.className='boite_menu_inactif_menu';
	window.location.href = lien;
	window.location.href = lien_prec;
  }  else
    {  document.getElementById(id).style.display = "";
	 // img.className='boite_menu_actif_menu';
	window.location.href = lien;
    }
}

function sub_bloc(img, id,lien,lien_prec)
{  
if (document.getElementById(id).style.display == "")
  {  document.getElementById(id).style.display = "none";
	//img.className='boite_menu_plus';
	window.location.href = lien;
	window.location.href = lien_prec;
  }  else
    {  document.getElementById(id).style.display = "";
	//img.className='boite_menu_moins';
	window.location.href = lien;

    }
}
