che bello funziona!!
Posto il codice allora....magari serve a qualcuno!!

<script language="JavaScript">
var ie4 = (document.all)? true:false;
var ns6 = (document.getElementById && parseInt(navigator.appVersion) >= 5) ? true:false;
var userWidth;
var userHeight;
</script>

<script language="JavaScript">
function redim()
{
if (ie4)
{
window.userWidth = document.body.clientWidth;
window.userHeight = document.body.clientHeight;
miolivello.style.left = (userWidth - xxx)/2;
miolivello.style.top = (userHeight - xxx)/2;
}
if (ns6)
{
userHeight = window.innerHeight;
userWidth = window.innerWidth;
document.getElementById("miolivello").style.left = ((userWidth - xxx)/2)+'px';
document.getElementById("miolivello").style.top = ((userHeight - xxx)/2)+'px';
}
}
</script>

<script language="JavaScript">
function resizePos() {
if ( window.userHeight !=window.outerHeight || window.userWidth != window.outerWidth)
document.location.href = document.location.href
</script>

Dovrebbe esserci tutto!!

P.S.:ho fatto caso che le misure in pixel per IE variano da quelle per FF......