// JavaScript Document

function scrollMove(s_delta){
	var step=10;
	var delta=s_delta;
	Y=-delta*step;
	//window.alert(Y);
	window.scrollBy(0,Y);
}

function browserCheck(Bflag){
	window.alert(Bflag);
}