<!--//
var nYPos;
var nTimer;
function SampleStartMove()
{
	//NNの場合
	if (navigator.appName=="Netscape")
	{
		//画面の位置を取得
		nYPos = window.pageYOffset;
		//NN4
		if(document.layers)
		{
			//レイヤーの幅と高さをマウス座標にセット
			document.layerSample.left = 0;
			document.layerSample.top = nYPos;
		}
		//NN6
		else
		{
			document.getElementById("layerSample").style.left = 0;
			document.getElementById("layerSample").style.top = nYPos;
		}
	}
	//IEの場合
	if (document.all)
	{
		//画面の位置を取得
		nYPos = document.body.scrollTop;
		//レイヤーの幅と高さを座標にセット
		layerSample.style.left = 0;
		layerSample.style.top = nYPos;
	}
	nTimer=setTimeout("SampleStartMove()",100);
}
//-->
