///  affichage info complémentaire pour les formations
function boxformtxt(box)
{
  document.getElementById(box).style.display = "block";		  	
}


function boxformtxt_out()
{
for (i=1;i<=4;i++)
  {document.getElementById("boxform"+i).style.display = "none";}
}

////// affichage info complémentaire pour vid surv Camtrace
function boxvidsurvtxt(box)
{
  document.getElementById(box).style.display = "block";		  	
}

function boxvidsurvtxt_out()
{
for (i=1;i<=1;i++)
  {document.getElementById("boxvidsurv"+i).style.display = "none";}
}

/////  tableau specification pour produit
function boxspecif(box,n_box)
{
	boxspecif_out(n_box);
	document.getElementById(box).style.display = "block";		  
	document.getElementById("ent_"+box).style.backgroundColor = "#CCCCCC";	
}

function boxspecif_out(n_box)
{
    for (i = 1; i <= 10; i++)
	{
	    if (document.getElementById("specif"+i))
		document.getElementById("specif"+i).style.display = "none";
	    if (document.getElementById("ent_specif"+i))
		document.getElementById("ent_specif"+i).style.backgroundColor = "#FFFFFF";
  	}
}

///  affichage infos complémentaires  
function boxmore(more)
{
  document.getElementById(more).style.display = "block";		  	
}

function boxless(more)
{
  document.getElementById(more).style.display = "none";		  	
}