Window Doesn't Center When the DOCTYPE is:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
I was able to bypass this with the script below.
var nWidth = document.body.offsetWidth / 2 - oWnd.get_Width() / 2;
var nHeight = document.body.offsetHeight / 2 - oWnd.get_Height() / 2;
oWnd.moveTo( nWidth + "px", nHeight + "px" );
Thanks,
Italo