function Ajuste_DIV(){
var Vbloc1 = document.getElementById('bloc1V');
var Vbloc2 = document.getElementById('bloc2V');
var Vajust1 = document.getElementById('ajust1V');
var Vajust2 = document.getElementById('ajust2V');
var Vblocmil = document.getElementById('blocmilieu');

//alert (Vbloc1.offsetHeight + " - "+  Vbloc2.offsetHeight + " - "+Vajust1.offsetHeight + " - "+Vajust2.offsetHeight);

if ((Vbloc1.offsetHeight + Vajust1.offsetHeight) > (Vbloc2.offsetHeight +Vajust2.offsetHeight))
{
maxcol = Vbloc1.offsetHeight + Vajust1.offsetHeight;
Tajust = maxcol - Vbloc2.offsetHeight ;
Vajust2.style.height = parseInt(Tajust)+'px';
}
else
{
maxcol = Vbloc2.offsetHeight + Vajust2.offsetHeight;
Tajust = maxcol - (Vbloc1.offsetHeight + Vajust1.offsetHeight);
Vajust1.style.height = parseInt(Tajust)+'px';
}


if (Vblocmil.offsetHeight > maxcol)
{ nb_pub_120 = Math.floor((Vblocmil.offsetHeight - maxcol) / 130); }

//alert(parseInt(Vbloc1.offsetHeight)+" / "+parseInt(Vbloc2.offsetHeight)+" / "+parseInt(Tajust)+" / "+parseInt(Vblocmil.offsetHeight)+" / "+parseInt(nb_pub_120));

//if (nb_pub_120 > 1)
//	{ 
//	var G3 = document.getElementById('blocpubG3');
//	G3.style.display = "block"; 
//	}

}

