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

