Estimado... esta es la solución
Código:
var Div=document.getElementById('div');
Div.style.position= "absolute";
Div.style.width= 40;
Div.style.height= 20;
Div.style.display = "";
var ypos = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop;
Div.style.left = (screen.availWidth-40)/2 + 'px';
Div.style.top = (screen.availHeight-20)/2 + ypos - 70 + 'px';
SALUDOS