// JavaScript Document
function pageup(e) {
	UAGENT = navigator.userAgent.toUpperCase();
	if (UAGENT.indexOf("MSIE") >=0) { posi = event.y; }
	else { posi = e.pageY; }
	moveObje(posi);
}
function moveObje(position) {
	move = position / 5;
	point = parseInt(position - move);
	scrollTo(0,point);
	if (point > 0) { setTimeout("moveObje(point)",5); }
}

function wopen2(url) {
		/*alert(yoko);*/
　    sWidth = screen.availWidth;
      wWidth = 550
　    x = (sWidth - wWidth) / 2;
　    newWin = window.open(url, "window1", "toolbar=no,menubar=yes,scrollbars=yes,width=550,height=310,resizable=yes");
　    newWin.moveTo(x,10);
　 }
function wopen3(url) {
		/*alert(yoko);*/
　    sWidth = screen.availWidth;
      wWidth = 550
　    x = (sWidth - wWidth) / 2;
　    newWin = window.open(url, "window1", "toolbar=no,menubar=yes,scrollbars=yes,width=550,height=400,resizable=yes");
　    newWin.moveTo(x,10);
 }
 
 function wopen4(url) {
		/*alert(yoko);*/
　    sWidth = screen.availWidth;
      wWidth = 620
　    x = (sWidth - wWidth) / 2;
　    newWin = window.open(url, "window4", "toolbar=no,menubar=yes,scrollbars=yes,width=620,height=310,resizable=yes");
　    newWin.moveTo(x,10);
 }
 
  function wopen5(url) {
		/*alert(yoko);*/
　    sWidth = screen.availWidth;
      wWidth = 620
　    x = (sWidth - wWidth) / 2;
　    newWin = window.open(url, "window5", "toolbar=no,menubar=yes,scrollbars=yes,width=620,height=650,resizable=yes");
　    newWin.moveTo(x,10);
 }
