if (document.all)  {
    window.resizeTo(1024,800);
}
else if (document.layers) {
    window.innerHeight = 1024;
    window.outerWidth = 800;
}
window.moveTo((screen.availWidth-1024)/2,(screen.availHeight-800)/2);
