function centra (){
	altezza_box_ctr = document.getElementById('box_ctr').offsetHeight;
	altezza_finestra = document.body.clientHeight;
	mezza_altezza = (altezza_finestra/2);
	mezza_altezza_box = (altezza_box_ctr/2);
	posizione = mezza_altezza - mezza_altezza_box;
	if (posizione<10){
		posizione = 10;	
	}
	document.getElementById('box_ctr').style.top = posizione + "px";
	//document.getElementById('preloader').style.top = posizione + "px";
	//posizione_background = posizione - 104;
	//document.body.style.backgroundPosition = "0px " + posizione_background + "px";
}
