w = 400;
h = 450;
x = (screen.width  - w) / 2;
y = (screen.height - h) / 2;
resizeTo(w,h);
moveTo(x,y);

function print_out() {
if (navigator.platform.indexOf('Win') != -1) {
window.print()
}
else  alert('Macではこの機能は利用できません。Explorerのメニューから印刷して下さい。')
}
