function openWindow1() {
window.open("/form/reserve1.html","","WIDTH=900,HEIGHT=700,scrollbars,resizable");
}

function openWindow2() {
window.open("/fmail/toiawase.html","","WIDTH=620,HEIGHT=700,scrollbars,resizable");
}

function openWindow3() {
window.open("","","WIDTH=640,HEIGHT=680,scrollbars,resizable");
}

function slowdownScroll() {
   if(navigator.appName == "Microsoft Internet Explorer" && document.compatMode == "CSS1Compat") {
      sctop = document.body.parentNode.scrollTop;
   }
   else if(window.pageYOffset){
      sctop = window.pageYOffset;
   } else {
      sctop = document.body.scrollTop;
   }

   if(sctop){
      scup = Math.ceil(sctop*.2);
      scrollBy(0,-scup);
      if (sctop-scup) setTimeout("slowdownScroll()",20);
   }
}
