function ajuste () {
    var nb = 0;
    var objet;
    
    var haut = parseFloat (document.body.clientHeight);
    if (haut > 800) {
    	haut = (haut - 800) / 2;
    } else {
    	haut = 0;
    }
    while (document.getElementsByTagName ('DIV')[nb] != null) {
        objet = document.getElementsByTagName ('DIV')[nb];
        var gauche = objet.style.left;
        if ((gauche != null) && (gauche != '')) {
            gauche = parseFloat (gauche.substr (0, gauche.length - 2)) + parseFloat (((document.body.offsetWidth - 1200) / 2));
            objet.style.left = gauche + "px";
	    objet.style.top = parseFloat (objet.style.top) + haut + "px";
        }
        nb++;
    }
}
