// CONTROLADOR CABECERA

function centrar(nombre){
	var ancho;
	var izq;
	objeto = document.getElementById(nombre) ;
	ancho = objeto.style.width.substr(0,3);
	izq = (screen.width - ancho)/2;
	//alert(izq);
	objeto.style.left = izq + 'px';
	objeto.style.display='block';
	document.getElementById('direccion').focus();
}
