Hola
Enea
Prueba este código, pero te adelanto que solo he conseguido que funcione en IE:
Código:
ancho=document.images['Foto'].width;
alto=document.images['Foto'].height;
wAncho=document.body.clientWidth;
wAlto=document.body.clientHeight;
vleft=(document.body.offsetWidth-ancho)/2;
vtop=(document.body.offsetHeight-alto)/2;
arriba=document.body.scrollTop;
izquierda=document.body.scrollLeft;
document.images['Foto'].style.position='absolute';
document.images['Foto'].style.top=vtop+arriba;
document.images['Foto'].style.left=vleft+izquierda;
Saludos,