//別ウィンドOPEN、アニメーションして開く処理↓

function init(){
    for ( x = 1; x < 520; x=x+60){
    this.window.resizeTo(x,1);
  }
    for ( y = 0; y < 550; y=y+60){
    this.window.resizeTo(x,y);
  }
}
function dicht(){
    for ( y = 520; y > 0; y=y-60){
    this.window.resizeTo(x,y);
  }
  for ( x = 550; x > 0; x=x-60){
    this.window.resizeTo(x,1);
  }
  close();
  }
  init();



