
<!--

//スムーズスクロール

function scrollToTop() {
	var IE  = navigator.appName.indexOf("Microsoft Internet Explorer",0) != -1;
	if( IE ){
		position = document.body.scrollTop + document.documentElement.scrollTop;
	} else {
		position = window.pageYOffset;
	}
	movePosition();
}

function movePosition() {
	position = Math.floor(position * 0.7);
	if( position > 1 ){
		window.scrollTo(0, position)
		setTimeout("scrollToTop()", 40);
	} else {
		window.scrollTo(0,0);
	}
}

<!--


function winOpen(fileName,w_Width,w_Height,scr){
	
	var w_Center	= 'yes';
	var screenSize	= 'yes';

	if( scr == 'scr_non' ){
			scroll_bar = 'no';
	}

	var option_01 = "width=" + w_Width + ",center=1,height=" + w_Height + ",resizable=no,scrollbars=yes";
	var option_02 = "menubar=no,toolbar=no,titlebar=no";

	var win=window.open(fileName,"sub_window",option_01,option_02)

	if( w_Width == 'yes'){
		win.resizeTo(screen.width,screen.height);
	}

	if( w_Center == 'yes'){
		x = (screen.width  - w_Width) / 2;
		y = (screen.height - w_Height) / 2;
		win.moveTo(x,y);
	}
}

isNN4 = document.layers;
isDOM = document.getElementById;

function printing() {
if(isNN4 || isDOM) {
window.print();
}
}

//-->
//-->

