<!--このファイルのコピー・転載厳禁-->
<!--
	var xsiz = 60;
	var ysiz = 80;
	var mxpos = xsiz/2;
	var mypos = ysiz/2;
	var ixpos = 0;
	var iypos = 0;
	var xlim = 10;
	var ylim = 3;

	function mouseHandler(){
		mxpos = document.body.scrollLeft+event.clientX;
		mypos = document.body.scrollTop+event.clientY;
	}
	function locdisp(){
		if (Math.abs(ixpos - mxpos) < xlim){
			ixpos = mxpos;
		}
		else{
			if(ixpos < mxpos){
				ixpos = ixpos + xlim;
			}
			else{
				ixpos = ixpos - xlim;
			}
		}

		if (Math.abs(iypos - mypos) < ylim){
			iypos = mypos;
		}
		else{
			if(iypos < mypos){
				iypos += ylim;
			}
			else{
				iypos -= ylim;
			}
		}


		mvobj.style.pixelLeft = ixpos-(xsiz/2);
		mvobj.style.pixelTop = iypos-(ysiz/2);
	}

	timerID = setInterval('locdisp()', 100);
//-->

